我想将框架定位在屏幕中央,但是当我输入 f.setLocationRelativeTo(null) 时。它将其定位在右下角。代码有问题吗?如果是这样,我该如何将其更改为使框架居中?
public class Maze {
public static void main(String[] args) {
new Maze();
}
public Maze(){
JFrame f = new JFrame();
f.setTitle("Maze Game");
//f.add(new board());
f.setLocationRelativeTo(null);
f.setSize(500, 400);
f.setVisible(true);
f.setDefaultCloseOperation(f.EXIT_ON_CLOSE);
}
}