如何用Java编写两个监听器分别监听两个事件 5
1个回答
展开全部
你要完成什么功能?观察者?
追问
分别监听一个加法,一个减法
追答
你是说awt中的按钮呀?
看看这个简单的例子
import java.awt.Button;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Test014 {
public static void main(String[] args){
JFrame f = new JFrame("test");
Container con = f.getContentPane();
con.setLayout(new FlowLayout());
JButton b1 = new JButton("+");
JButton b2 = new JButton("-");
final JLabel label = new JLabel("");
con.add(b1);
con.add(b2);
con.add(label);
f.setSize(400,200);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
b1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
label.setText("你按了 + ");
}
});
b2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
label.setText("你按了 - ");
}
});
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询