オブジェクトを参照せずに 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);
。ありがとう。