フレームを画面中央に配置したいのですが、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);
}
}