您的位置:首页 > 编程语言 > Java开发

java getSource()和 getActionCommand()区别

2017-05-25 19:01 344 查看
比如说 按纽的事件,同一个JFrame里可能有多个按钮的事件,为了避免冲突,给每个按钮设置不同的

ActionCommand,在监听时间的时候,用这个做条件区分事件,以做不同的响应

追问

他与getSource有什么区别

回答

getSource()

Returns:

The object on which the Event initially occurred.

依赖于事件对象

getActionCommand()

Returns the command name of the action event fired by this button. If the command name is null (default) then this method returns the label of the button.

依赖于按钮上的字符串

getSource得到的组件的名称,而getActionCommand得到的是标签。

如:Button bt=new Button(“buttons”);

用getSource得到的是bt

而用getActionCommand得到的是:buttons

e.getSource() 返回的当前动作所指向的对象,包含对象的所有信息

e.getActionCommand() 返回的是当前动作指向对象的名称

这里附一个开灯的demo

package com.liuyanzhao;
import java.awt.Button;
import java.awt.Color;
import java.awt.Frame;
import java.awt.Label;
import java.awt.Panel;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.WindowConstants;
public class Demo2 implements ActionListener {
JButton button_open ;
JButton button_close;
Label label;//这个地方不要用JLable,否则空白符不占位
Label label2;
public static void main(String[] args) {
Demo2 d = new Demo2();
d.go();
}
public void go() {
JFrame frame = new JFrame();
frame.setSize(300, 100);
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setVisible(true);
JPanel panel = new JPanel();
frame.add(panel);
label = new Label("灯状态:");
label2 = new Label("  ");
button_open = new JButton("开灯");
button_close = new JButton("关灯");
button_open.addActionListener(this);
button_close.addActionListener(this);
panel.add(label);
panel.add(label2);
panel.add(button_open);
panel.add(button_close);
}
@Override
public void actionPerformed(ActionEvent e) {
//方法一:getActionCommand
//      if(e.getActionCommand()=="开灯") {
//          label2.setBackground(Color.red);
//          button_open.setEnabled(false);
//          button_close.setEnabled(true);
//      } else if(e.getActionCommand()=="关灯") {
//          label2.setBackground(Color.black);
//          button_close.setEnabled(false);
//          button_open.setEnabled(true);
//      }
//方法二:getSource
if(e.getSource()==button_open) {//button_open不要加引号
label2.setBackground(Color.red);
button_open.setEnabled(false);
button_close.setEnabled(true);
} else if(e.getSource()==button_close) {//button_closen不要加引号
label2.setBackground(Color.black);
button_close.setEnabled(false);
button_open.setEnabled(true);
}
}
}


这里要小心,请看注释

本文链接:http://liuyanzhao.com/4051.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: