基于以下示例:
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()
来明确我调用一个成员方法而不是来自外太空的东西。