gpt4 book ai didi

java - 在操作事件方法中,它找不到我的 Jbutton 对象。我正在尝试制作角色选择类型的东西,但找不到可行的解决方案

转载 作者:行者123 更新时间:2023-11-30 06:43:38 26 4
gpt4 key购买 nike

这是我的代码。问题出在 Action 监听器的最底部。你可以看出我已经实例化了所有按钮对象。我尝试在方法之外创建按钮对象。我实在找不到解决办法。请帮忙

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class Select implements ActionListener {
boolean shipSelect1=false;
boolean shipSelect2=false;
boolean shipSelect3=false;
boolean shipSelect4=false;
boolean shipSelect5=false;
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Select().createGui();
}
});

}

public void createGui() {
JFrame frame = new JFrame("Java Stocks");
frame.setSize(700, 700);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel(new GridBagLayout());
frame.add(panel);
frame.getContentPane().add(panel, BorderLayout.WEST);

GridBagConstraints c = new GridBagConstraints();

JButton button1 = new JButton("Dorito");
c.gridx = 0;
c.gridy = 0;
c.insets = new Insets(40, 40, 40, 40);
panel.add(button1, c);
button1.addActionListener(this);
button1.setToolTipText("Your gonna fly a dorito in space son.");

JButton button2 = new JButton("Otirod");
c.gridx = 0;
c.gridy = 1;
panel.add(button2, c);
button2.addActionListener(this);
button2.setToolTipText("(?rosnopS elbissoP).nos ecaps ni ortirod");

JButton button3 = new JButton("Ship");
c.gridx = 0;
c.gridy = 2;
panel.add(button3, c);
button3.addActionListener(this);
button3.setToolTipText("Basic Ship");

JButton button4 = new JButton("pihS");
c.gridx = 0;
c.gridy = 3;
panel.add(button4, c);
button4.addActionListener(this);
button4.setToolTipText("pihS cisaB");

JButton button5 = new JButton("Good Ship");
c.gridx = 0;
c.gridy = 4;
panel.add(button5, c);
button5.addActionListener(this);
button5.setToolTipText("The ship is the best ship. Your not gonna");
}

public void actionPerformed(ActionEvent e) {
Object source = e.getSource();
if(source == button1)
{
shipSelect1=true;

} else if(source == button2)
{
shipSelect2=true;
}
else if(source == button3)
{
shipSelect3=true;
}
else if(source == button4)
{
shipSelect4=true;
}
else if(source == button4)
{
shipSelect5=true;
}
else{

}
}
}

最佳答案

您想了解 scope 。该属性定义变量的可见性。

方法中定义的变量仅在该方法内可见。因此,您必须将按钮移至类范围。

含义:

JButton button1 = new JButton("Dorito");

...

应该进入你的类的正文!与您为所有这些人所做的类似:

boolean shipSelect1=false;

注意:您仍然可以在该方法中对这些按钮执行所有 init 调用;您只需将声明从该方法主体中移出即可。

除此之外:真正的答案是:不要尝试通过编写 Swing UI 应用程序来学习 Java。从真正的基础开始;像here - 其他任何事情都会导致沮丧和浪费时间。您几乎无法爬行 - 但您却想参加跨栏比赛。

关于java - 在操作事件方法中,它找不到我的 Jbutton 对象。我正在尝试制作角色选择类型的东西,但找不到可行的解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44008571/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com