我做了一个名为Button的课程; 在构造函数中,我绘制一个按钮。 但是我想给一个类名,例如MainMenu或Settings给那个构造函数,它将在单击按钮时执行。用Java编程的正确方法是什么。
这是学校作业
感谢您的帮助!
答案 0 :(得分: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
}
});
}
}
答案 1 :(得分:0)
你可以受到启发this processing tutorial 或者您应该使用一些库来创建带有按钮like controlP5
的菜单