我遇到了一个调用 setdefaultcloseoperation() 而不引用任何对象的代码。我读到方法是参考对象调用的。这是代码
public class Mainpage extends JFrame implements ActionListener{
JFrame f = new JFrame("Mainpage");
public Mainpage() {
super("Mainpage");
f.setSize(1000,6000);
f.getContentPane().setLayout(null);
f.setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE); // how is this happening?
}
我想知道如何setDefaultCloseOperation(EXIT_ON_CLOSE);
工作。谢谢。