内部クラス内で囲んでいるクラスのメソッドを呼び出していますが、構文エラーが発生します。コードは次のとおりです。
public class Horizon
{
....
public void checkWinner()
{
if(x[1]==1 && x[2]==1 && x[3]==1 || x[4]==1 && x[5]==1 && x[6]==1 || x[7]==1 && x[8]==1 && x[9]==1)
{
JOptionPane.showMessageDialog(null, "Congratulations!\n Player 1 won!", "Congratulations",JOptionPane.OK_OPTION);
}
}
private class HandlerClass implements MouseListener
{
public void mouseClicked(MouseEvent event)
{
if(event.getSource()==lb1)
{
if(j==1)
x[1]=1;
else
x[1]=2;
lb1.setIcon(icon);
}
public void mousePressed(MouseEvent event){}
public void mouseEntered(MouseEvent event){}
public void mouseReleased(MouseEvent event){}
public void mouseExited(MouseEvent event){} // error here
Horizon.this.checkWinner();
if(i==9)
{
JOptionPane.showMessageDialog(null, "The game is a draw", "Draw", JOptionPane.OK_OPTION);
}
}
}
}
メソッド呼び出しを削除すると、エラーはなくなります。
このエラーの理由は何ですか?どうすれば解決できますか? よろしく