将多个actionListener添加到多个JButton

时间:2017-10-12 19:47:21

标签: java swing actionlistener

我正在使用GUI并尝试使用不同的按钮来执行不同的任务。

目前,每个按钮都指向同一个ActionListener。

public class GUIController {

public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            createAndShowGUI();
        }
    });
}
public static void createAndShowGUI() {
    JFrame frame = new JFrame("GUI");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setLayout(new GridLayout(3,3));

    JLabel leight =new JLabel("8");
    frame.getContentPane().add(leight);
    JLabel lfive =new JLabel("0");
    frame.getContentPane().add(lfive);
    JLabel lthree =new JLabel("0");
    frame.getContentPane().add(lthree);

    JButton beight =new JButton("Jug 8");
    frame.getContentPane().add(beight);
    JButton bfive =new JButton("Jug 5");
    frame.getContentPane().add(bfive);
    JButton bthree =new JButton("Jug 3");
    frame.getContentPane().add(bthree);

    LISTN ccal = new LISTN (leight,lfive,lthree);

    beight.addActionListener(ccal);
    bfive.addActionListener(ccal);
    bthree.addActionListener(ccal);

    frame.pack();
    frame.setVisible(true);

}

}

我的actionlistener文件

public class JugPuzzleGUILISTN implements ActionListener {
JLabel leight;
JLabel lfive;
JLabel lthree;

JugPuzzleGUILISTN(JLabel leight,JLabel lfive, JLabel lthree){
    this.leight = leight;
    this.lfive = lfive;
    this.lthree = lthree;
}

public void actionPerformed(ActionEvent e) {
    }

}
}

我在ActionEvent中编写的任何内容都适用于所有三个按钮,我怎样才能使每个按钮都有自己的功能? 非常感谢你!

2 个答案:

答案 0 :(得分:3)

  

我怎样才能使每个按钮都有自己的功能

为每个按钮添加不同的ActionListener。

更好的是,使用Action而不是ActionListener。 Action只是一个花哨的ActionListener,它还有一些属性。

阅读How to Use Action上Swing教程中的部分,了解定义内部类的示例,以便为每个按钮创建唯一的Action

答案 1 :(得分:0)

  

我在ActionEvent中编写的任何内容都适用于所有三个按钮,我怎样才能使每个按钮都有自己的功能?

您有类似的操作,您希望所有3个按钮都能够触发。但是,您还需要为每个按钮实现不同的功能。

其中一种方法是创建另外3个侦听器,每个侦听器都添加到各自的按钮中。因此,现在每个按钮将添加2个侦听器(您当前的一个+新创建的)。

//Example:

beight.addActionListener(ccal);
bfive.addActionListener(ccal);
bthree.addActionListener(ccal);

beight.addActionListener(ccal_beight);
bfive.addActionListener(ccal_bfive);
bthree.addActionListener(ccal_bthree);

还有其他方法,例如在当前侦听器中使用if语句来检查单击了哪个按钮,但我发现使用较少的代码耦合更容易维护单独的侦听器。