0

在 if 语句中,找不到 launchBtn。我可能正在做一些愚蠢的事情。任何人都可以看到有什么问题吗?错误以粗体显示(或用两个 ** 突出显示,这是我的代码:

package launcher;

import java.awt.event.*;

import javax.swing.*;

@SuppressWarnings("serial")
class Window extends JFrame implements ActionListener
{
JPanel panel = new JPanel();

    public Window()
    {
    //Creates the blank panel
    super("Launcher");
    setSize(500, 200);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    add(panel);
    setVisible(true);

    //Create the button variables
    JButton launchBtn = new JButton("Launch Game");
    JButton optionsBtn = new JButton("Launcher Options");

    //Add the buttons to the launcher
    panel.add(launchBtn);
    panel.add(optionsBtn);

    //Add the buttons to the action listener
    launchBtn.addActionListener(this);
    optionsBtn.addActionListener(this);
}

public void actionPerformed(ActionEvent event) 
{
    if(event.getSource() == **launchBtn**)
    {
        **launchBtn**.setEnabled(true);
    }
}
}
4

2 回答 2

1

您可能希望launchBtnoptionsBtn成为此类的实例变量,而不是在构造函数中声明的局部变量。将它们的声明移到构造函数之外。

于 2013-09-29T09:22:54.730 回答
1

launchBtn已被声明为具有Window构造函数上下文的局部变量。它在构造函数范围之外没有任何意义。

public Window()
{
    //...
    //Create the button variables
    JButton launchBtn = new JButton("Launch Game");

如果您希望在构造函数之外访问变量,您应该创建一个类实例变量...

private JButton launchBtn;
public Window()
{
    //...
    //Create the button variables
    launchBtn = new JButton("Launch Game");

这将允许Window该类的其他方法引用该变量

于 2013-09-29T09:23:45.347 回答