关于循环的问题。我需要通过java中的循环访问10个标签?
我有一个关于循环的问题。我需要访问 10 个标签,其名称如 label1、label2、label3 .... 等。我需要知道是否可以通过 java 中的循环来访问这些标签?
I have a problem regarding loops. I need to access 10 labels which have names like label1, label2, label3 .... etc. I need to know whether I can access those labels by going through a loop in java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用
List
或array
怎么样?How about using
List
or anarray
将这些标签更改为数组,并使用索引访问它。
例如:
Change those labels to be an array, and access it using an index.
For example:
将标签放入 LinkList 或数组中
然后您可以循环访问这些数组或 linkList
Put your labels in to LinkList or array
Then you can access those array or linkList on a loop
如果您无法更改标签名称/将它们放入数组中,您可以创建一个对标签的引用数组,并在程序开头用标签列表填充它。
If you cannot change the labels names / put them into an array you can make an array of references to the labels and fill it at the beginning of your program with the list of your labels.
“获得标签”有点模糊。您指的是 java.awt.label 的不同实例吗?如果是这样,当它们位于带有 for-each 语句的列表中时,您可以简单地循环它们。
'Access to labels' is kinda vague. Are you referring to different instances of java.awt.label? If so you can simply loop over them when they're in a list with a for-each statement.
如果您正在谈论 Java 标签,则可以使用 switch 语句。如果您正在讨论诸如 JLabel 之类的对象,请使用数组或 ArrayList。
If you are talking about Java labels, you can use a switch statement instead. If you are talking about objects such as a JLabel, use an array or ArrayList.