• java getSource()和 getActionCommand()区别


    感谢大佬:https://blog.csdn.net/LIU_YANZHAO/article/details/72740011?utm_source=blogxgwz1

    比如说 按纽的事件,同一个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);
                }
            }
        }
    
  • 相关阅读:
    复杂json对应的实体类定义
    Hbase 根据rowkey批量读写
    Spark 分组聚合转Map 的方式
    idea本地连接访问hadoop集群的方法
    新版supperset连接druid数据源设置
    使用jdbc java 连接 sqlserver 2008数据库 需要注意的事项
    关于CrystalQuartz设置Cron匹配的时区问题~
    VS2010连接远程TFS2012项目问题
    关于ASP.NET SignalR的Group使用
    关于CodeFrist下EntityFramework5.0及其最新版本中枚举的使用
  • 原文地址:https://www.cnblogs.com/tfxz/p/12621644.html
Copyright © 2020-2023  润新知