如何为 JButton 集合动态分配名称?
我必须根据某个集合的大小创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用按钮列表(甚至按钮数组):
Use a list of buttons (or even an array of buttons) :
创建一个
List
并每次循环添加
新的JButton
到它。Make a
List<JButton>
and each time through your loopadd
the newJButton
to it.