0

我创建了一个名为 Button 的类;在构造函数中,我绘制了一个按钮。但是,我想为该构造函数提供一个类名,例如 MainMenu 或 Settings,当单击该按钮时将执行该构造函数。用Java编程的正确方法是什么。

这是为了学校作业

谢谢你的帮助!

4

2 回答 2

0

我建议在“main”方法或构造函数中使用 actionListener。

import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
class test {
    public static void main(String[] args) {
        JFrame f = new JFrame();
        f.setSize(100,100);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);

        JButton button = new JButton("Click me");
        f.add(button);
        f.addActionListener (new ActionListener () { //<---this is the important part
            public void actionPerformed(ActionEvent e) {
                //do whatever you need to do here
            }
        });
    }
}
于 2013-10-21T22:01:47.020 回答
0

您可能会受到这个处理教程的启发 ,或者您应该使用一些库来创建带有controlP5 等按钮的菜单

于 2013-10-24T08:50:51.530 回答