java 多个button添加同一个事件监听类判断是哪个button
3个回答
展开全部
Button a, b, c, d;
a = new Button("a");
......
this.addActionListener(a);
......
if (e.getSource() == a) {
//doing something here
} else if (e.getSource() == b) {
//doing something here
} else if (e.getSource() == c) {
//doing something here
} else if (e.getSource() == d) {
//doing something here
}
随便写的
主要就是下面的那些if判断那样子
a = new Button("a");
......
this.addActionListener(a);
......
if (e.getSource() == a) {
//doing something here
} else if (e.getSource() == b) {
//doing something here
} else if (e.getSource() == c) {
//doing something here
} else if (e.getSource() == d) {
//doing something here
}
随便写的
主要就是下面的那些if判断那样子
展开全部
可以为button设置事件触发命令,button.setActionCommand(String command); 在监听器里面执行
if(e.getActionCommand.equals("command")){ //dosomething}
if(e.getActionCommand.equals("command")){ //dosomething}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
e.getSource() == 按钮对象
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询