我有一个问题,我试图在同一个类中从另一个方法( addAButton )开始调用公共菜单方法中的JFrame但是没有用。我曾尝试在公共菜单中调用 addAButton ,但我不能因为我无法在该类中放置容器。代码:
public class Menu {
public Menu(Component component) {
JFrame frame = new JFrame("...");
frame.setSize(new Dimension(1050, 700));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(component);
// Set up the content pane.
try {
frame.setContentPane(new JLabel(new ImageIcon(ImageIO
.read(new File("res/menuBackground.png")))));
} catch (IOException e) {
e.printStackTrace();
}
addComponentsToPane(frame.getContentPane());
// Display the window.
frame.pack();
frame.setVisible(true);
}
public static void addComponentsToPane(Container pane) {
//some code...
pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS));
addAButton("SP", "res/Singleplayer.png",
"res/Singleplayer_pressed.png", pane, true);
//other buttons...
}
public static void addAButton(final String text, String BtnIcon,
String PressBtnIcon, Container container, Boolean isEnabled) {
//stuff for buttons...
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (button.getText().equals("Q")) {
System.exit(0);
} else if (button.getText().equals("SP")) {
Component component = new Component();
//here I want to put frame.dispose to close this window for when the game window opens.
component.start();
} else if(button.getText().equals("O")) {
//here I want to put frame.dispose to close this window for when the options window opens.
Component.Options();
}
}
});
}
}
答案 0 :(得分:2)
首先,公共Menu
代码块不是方法。这是一个构造函数。它的功能是初始化和准备这个类的新对象的字段。
frame
变量是本地变量。如果在代码块中声明变量,则只能在该代码块中使用。只要声明它的代码块结束,就会抛弃局部变量。
如果您希望能够从不同方法访问数据项,则意味着该项是对象的 state 的一部分。也就是说,对象应该在其生命周期内将该项保留在其中,以便在其上调用的下一个方法将使该项可用。
当数据项是对象状态的一部分时,应将其声明为字段。也就是说,它不应该在任何方法或构造函数中声明,而应该在所有方法和构造函数之前声明它。
声明了一个字段后,可以在构造函数中初始化它。然后,您可以从同一类中的任何方法访问该字段。
public class Menu {
private JFrame frame; // This is the field declaration
public Menu( Component component ) {
frame = new JFrame("..."); // Here you just initialize, not declare.
... // Do the rest of your initializations
}
... // Other methods
}
现在,您可以在任何方法中使用字段frame
。