次の例に基づいています。
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingConstants;
public class ExempleJFrame extends JFrame {
public ExempleJFrame() {
super("JFrame example");
setLocation(50, 50);
setSize(200, 200);
getContentPane().add(new JLabel("This is a text label!", SwingConstants.CENTER));
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String[] args) {
ExempleJFrame frame = new ExempleJFrame();
frame.setVisible(true);
}
}
メンバー メソッドを呼び出していることをより明確にする方法はありますか (setLocation()
およびを参照setSize()
)。
this.setLocation()
宇宙からのものではなく、メンバーメソッドを呼び出すことを明示するために、の行で何かを探しています。