Java事件处理程序String错误

时间:2014-11-21 18:32:56

标签: java string button label actionevent

我正在尝试创建一个GUI应用程序,我正在使用在ActionListener中注册的二维数组。在编译时,我收到String s = ((Button)o).getLabel(); declaration not valid here.错误。在我的应用程序中,如果单击按钮,按钮上的每个“x”标签都应切换为“o”。我使用的代码是:

来自构造函数

public ArrayDemo2()
{
    setLayout(new GridLayout(3,3));
    b= new Button[3][3];

    for(int i=0; i<b.length; i++)
    {
        for(int j=0; j<b[i].length; j++)
        {
            if(Math.random() < 0.5) add(b[i][j] = new Button("X"));
            else add(b[i][j] = new Button("O"));
            b[i][j].addActionListener(this);    
        }
    }
    addWindowListener(new WindowAdapter()
    {
        public void windowClosing(WindowEvent e)
        {
            System.exit(0);
        }
    });

    setSize(600,600);
    setVisible(true);

}
    public void actionPerformed(ActionEvent e)
    {
        Object o = e.getSource();
        String s = "";
        if(o instanceof Button)
        {
        s = ((Button)o).getLabel();
        }   
        if(s.equals("X"))
        ((Button)o).setLabel("O");
        else
        ((Button)o).setLabel("X");

    }

1 个答案:

答案 0 :(得分:0)

您不能在没有括号的if语句中声明新的String。

你必须写:

if(o instanceof Button) {
    String s = ((Button)o).getLabel();
}

由于字符串立即超出范围,因此没有任何意义。你可能想要的是这样的:

String s = "";
if(o instanceof Button) {
    s = ((Button)o).getLabel();
}