Java - Call Method via JButton

后端 未结 5 1168
生来不讨喜
生来不讨喜 2020-12-31 15:08

How can I call a method by pressing a JButton?

For example:

when JButton is pressed
hillClimb() is called;

I know how to display me

5条回答
  •  清酒与你
    2020-12-31 15:55

    If you know how to display messages when pressing a button, then you already know how to call a method as opening a new window is a call to a method.

    With more details, you can implement an ActionListener and then use the addActionListener method on your JButton. Here is a pretty basic tutorial on how to write an ActionListener.

    You can use an anonymous class too:

    yourButton.addActionListener(new ActionListener() { 
        public void actionPerformed(ActionEvent e) { 
            hillClimb();
        } 
    });
    

提交回复
热议问题