java怎么依次接收对窗体中button的点击
时间: 2024-06-03 07:07:54 浏览: 92
可以通过为每个按钮添加ActionListener来实现对窗体中button的点击进行依次接收。具体步骤如下:
1.在每个按钮上添加ActionListener,方法为addActionListener,例如:
button1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//处理button1的点击事件
}
});
button2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//处理button2的点击事件
}
});
2.在每个ActionListener中处理对应按钮的点击事件,例如:
button1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//处理button1的点击事件
System.out.println("button1被点击了");
}
});
button2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//处理button2的点击事件
System.out.println("button2被点击了");
}
});
这样,在窗体中每次点击一个按钮时,对应的ActionListener会被触发,从而实现对窗体中button的点击进行依次接收并处理。
阅读全文