我创建了一个 Dimension 和一个 Point 对象,但我不需要命名这两个对象并在方法调用的参数中调用其构造函数。我可以解释为什么这是可能的吗?我已经太习惯于给我的对象命名,我需要对我的问题进行解释。
import java.awt.Dimension;
import java.awt.Point;
import javax.swing.JFrame;
public class GameFrame extends JFrame {
public GameFrame()
{
// call this method to the GameFrame object
// if you do not call this method the JFrame subclass will not actually close
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// set size to an appropriate size
// create a dimension object
setSize(new Dimension(600,600));
// upon creating the object set the location of the frame to the center of the screen
setLocation(new Point (500,300));
// prevent the user from resizing the GameFrame object
setResizable(false);
}
}