我正在尝试使用 Eclipse 创建 Java 7 通讯簿,当我测试运行 JFrame 时,JLabels 不可见并且 JButtons 重叠。(按钮将占据整个 JFrame)例如
add(saveButton);
add(cancelButton);
add(headingLabel);
headingLabel.setVisible(true);
cancelButton.setLocation(200,200);
saveButton.setLocation(400,200);
cancelButton.setSize(200,50);
saveButton.setSize(200,50);
我究竟做错了什么?