好像我完全不明白这些东西是如何工作的......我有一个扩展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();
}
}
答案 0 :(得分:1)
testPanel
中的这一行必定会引发异常:
add(someBtn);
由于参考someBtn
为空......
您从未在button
类中初始化JavaApplication3
实例变量,bzut已在testPanel
类的构造函数中使用该变量。
但是,您希望获得此流程的反转:
testPanel
类JavaApplication3
课程中获取参考资料 - 您需要在testPanel课程中使用getter 示例:
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命名约定:类名以大写字母开头......