最佳答案
在 另一条线中,我说我喜欢通过这样的方式来集中我的 GUI:
JFrame frame = new JFrame("Foo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new HexagonGrid());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
但是安德鲁 · 汤普森却有不同的看法
frame.pack();
frame.setLocationByPlatform(true);
想知道为什么吗?