如何添加侦听多个按钮的操作侦听器
2022-09-01 12:28:36
我试图弄清楚我对动作听众做错了什么。我正在学习多个教程,但是当我尝试使用操作侦听器时,netbeans和eclipse会给我带来错误。
下面是一个简单的程序,我试图让一个按钮在其中工作。
我做错了什么?
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
public class calc extends JFrame implements ActionListener {
public static void main(String[] args) {
JFrame calcFrame = new JFrame();
calcFrame.setSize(100, 100);
calcFrame.setVisible(true);
JButton button1 = new JButton("1");
button1.addActionListener(this);
calcFrame.add(button1);
}
public void actionPerformed(ActionEvent e) {
if(e.getSource() == button1)
}
}
动作监听器永远不会被注册,因为用它看不到,错误说找不到符号。if(e.getSource() == button1)
button1