如何使 JButton 像静态变量一样工作,即在所有方法中工作

发布于 2024-12-19 12:59:39 字数 195 浏览 0 评论 0原文

我有一个 JButton 数组 按钮[100] 并且使用不止一种方法,一种创建 100 个按钮,一种创建动作侦听器 我曾经

String abc=button[i].setActionCommand(String.format("Button %d", i));  

找到按下了什么按钮,但无法识别可变按钮。

I have a JButton array
button[100]
and use is in more than one method, one creating the 100 buttons and one the action listener
i've used

String abc=button[i].setActionCommand(String.format("Button %d", i));  

to find what button was pressed but variable button can't be identified.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

素年丶 2024-12-26 12:59:39

您需要为变量提供超出本地方法范围的范围。如果将其定义为类的实例变量,则可以在该类内的任何位置访问它。

class YourClass {

     private JButton[] buttons; // instance variable, accessible to all methods in class 

     public void foo() {
          buttons = new JButton[100]; // can use buttons here
     }

     public void bar() {
          // can also use buttons here
          for (JButton button : buttons) {  

         }
     }
}

You need to give your variable more than local method scope. If you define it as a instance variable of the class, it will be accessible anywhere inside that class.

class YourClass {

     private JButton[] buttons; // instance variable, accessible to all methods in class 

     public void foo() {
          buttons = new JButton[100]; // can use buttons here
     }

     public void bar() {
          // can also use buttons here
          for (JButton button : buttons) {  

         }
     }
}
北渚 2024-12-26 12:59:39

要在 ActionListener 中找出按下了哪个按钮,您可以向 ActionEvent 询问其来源(请参阅 ActionEvent#getSource)。这将是按钮

To find out in the ActionListener which button was pressed, you could ask the ActionEvent for its source (see ActionEvent#getSource). This will be the button

蓝天白云 2024-12-26 12:59:39
public class abc{

 JButton button[]=new JButton[100];

method

}
public class abc{

 JButton button[]=new JButton[100];

method

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文