如何为 JButton 集合动态分配名称?

发布于 2024-10-19 07:16:12 字数 205 浏览 1 评论 0原文

我必须根据某个集合的大小创建 JButton 集合。如何动态创建 JButton 列表:button1、button2、button3...以具有类似

for (int i=0;i<collection.size();i++){
   JButton button+i = new Button();
 }

“谢谢”的内容

I have to create a collection of JButtons depending of a size of a certain collection. How to create the List of JButtons :button1, button2, button3...dynamically to have something like

for (int i=0;i<collection.size();i++){
   JButton button+i = new Button();
 }

Thanks

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

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

发布评论

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

评论(2

够运 2024-10-26 07:16:12

使用按钮列表(甚至按钮数组):

List<JButton> listOfButtons = new ArrayList<JButton>(collection.size());
for (int i=0; i < collection.size(); i++) {
    JButton button = new JButton();
    listOfButtons.add(button);
}

Use a list of buttons (or even an array of buttons) :

List<JButton> listOfButtons = new ArrayList<JButton>(collection.size());
for (int i=0; i < collection.size(); i++) {
    JButton button = new JButton();
    listOfButtons.add(button);
}
七秒鱼° 2024-10-26 07:16:12

创建一个 List 并每次循环 添加新的JButton到它。

Make a List<JButton> and each time through your loop add the new JButton to it.

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