无法从另一个类添加actionlistener

时间:2013-10-01 19:40:40

标签: java swing actionlistener

好像我完全不明白这些东西是如何工作的......我有一个扩展JPanel并实现Actionlistener的类,然后我想将它添加到扩展JFrame的类中......我可以&#39 ;让这个工作......

public class testPanel extends JFrame implements ActionListener{
JButton someBtn;

public testPanel(JButton someBtn){
    this.someBtn = someBtn;
    add(someBtn);
    someBtn.addActionListener(this);

}

@Override
public void actionPerformed(ActionEvent e){
    if(e.getSource() == someBtn)
        System.out.println("this worked");
}

}

第二类文件

public class JavaApplication3 extends JFrame{

/**
 * @param args the command line arguments
 */
JButton button;

public JavaApplication3(){
    super("blah");
    JFrame p = new testPanel(button);
    add(p);
    pack();
    setVisible(true);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

public static void main(String[] args) {
    // TODO code application logic here
    new JavaApplication3();
}
}

1 个答案:

答案 0 :(得分:1)

testPanel中的这一行必定会引发异常:

add(someBtn);

由于参考someBtn为空......

您从未在button类中初始化JavaApplication3实例变量,bzut已在testPanel类的构造函数中使用该变量。

但是,您希望获得此流程的反转:

  1. testPanel
  2. 中创建按钮
  3. 如果您想从JavaApplication3课程中获取参考资料 - 您需要在testPanel课程中使用getter
  4. 示例:

    public class testPanel extends JFrame implements ActionListener{
        JButton someBtn; //consider using private
    
        public testPanel(){
            this.someBtn = new JButton(); //add correct constructor here
            add(someBtn);
            someBtn.addActionListener(this);
        }
    
        public JButton getSomeBtn() {
            reeturn someBtn;
        }
    //... rest comes here
    }
    
    
    
    public class JavaApplication3 extends JFrame{
    
        JButton button;
    
        public JavaApplication3(){
            super("blah");
            JFrame p = new testPanel();
            button  = p.getSomeBtn(); //this is the important line
            add(p);
            pack();
            setVisible(true);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        }
        //... rest comes here    
    }
    

    旁注:使用Java命名约定:类名以大写字母开头......