如何将变量从actionlistener内部分配给一个外部

时间:2014-10-10 03:53:24

标签: java variable-assignment

我是一名C程序员,他已经完成了最后一分钟的Java GUI任务。鉴于我不是GUI或Java人,我创建了两个对象:

1是一个文本框,我希望为其分配第二个对象的结果。 2是组合框。当用户从组合框中选择时,我希望将该值填充到我的第一个对象(文本字段)中。这是我的actionListener():

class Foo {
    // declared instance variable
    private String theValue;

    // created textField, and JComboBox thingies

    listBox.addActionListener(new ActionListener()
    {
        public void actionPerformed(ActionEvent e)
        {
           // this line produces the reported error
           //textField.setText( (String)(((JComboBox)e.getSource()).getSelectedItem()) ); 

         // this line works, but then get below error when try to assign theValue outside method
           theValue = ((JComboBox)e.getSource()).getSelectedItem();
        }                    
    });
...
textField.setValue(theValue);   // errors out

并得到以下内容(显然知道Java错误):不能引用非final变量 在以不同方法定义的内部类中的textfield

评论的行产生了相同的结果。我希望能够将theValue指定为我的文本字段的值,但是显然不能在侦听器中声明我,因为存在范围问题。

非常感谢任何帮助: - )

1 个答案:

答案 0 :(得分:1)

制作JTextField final或将其作为课程中的实例字段。

final JTextField textField = ...

public class ... {

    private JTextField textField;

    public ...() { = new JTextField(...);

您可以为其他变量执行此操作。通常,除非您有其他理由不这样做,否则我建议使用实例字段。请查看Understanding Class Members了解更多详情......

您可以将实例字段视为" private" C中的变量,那些在C文件本身内声明的变量,其中不能在声明它们的文件外部引用(很抱歉很长时间以来我已经完成了C,所以可能不完全正确)

<强>更新

首先,GUI往往是事件驱动的,也就是说,它们不会以线性/程序方式运行。你设置了一堆回调并等待触发它们的东西。触发回调时,您会采取适当的措施......

import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class Test {

    public static void main(String[] args) {
        new Test();
    }

    public Test() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        private JTextField textField;
        private JComboBox comboBox;
        private String theValue;

        public TestPane() {
            textField = new JTextField(10);
            comboBox = new JComboBox(new String[]{"Banana", "Apple", "Grapes", "Strawberries"});
            comboBox.addActionListener(new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    theValue = (String)comboBox.getSelectedItem();
                    textField.setText(theValue);
                }
            });
            comboBox.setSelectedItem(null);

            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            add(textField, gbc);
            add(comboBox, gbc);
        }

    }

}

在示例中,不会立即调用分配给ActionListener的{​​{1}},这意味着分配下面的剩余代码将立即运行,并且在JComboBox之前有可能被运行调用。

将其想象为函数指针或回调。你可以将它传递给另一个函数,但你不知道什么时候可以调用它......

ActionListener的状态发生变化并触发和操作事件时,会调用JComboBox s ActionListener方法,此时您可以获取当前值并将其应用于文本字段并将其分配给您的变量......或者您需要做的其他事情......

注意,我附加了actionPeformed和被叫ActionListener,这实际上会导致comboBox.setSelectedItem(null)被通知......棘手;)