想要使用 for 循环来设置多个对象的属性
这是一个菜鸟问题。我想使用 for 循环来设置几个按钮的可见性。这就是我想做的:
for (int y = 0; y < numberOfPeople; y++) {
button[y].hidden = true;
}
我有 5 个按钮,名为:button1、button2、button3、button4、button5,人数是我要发送的变量。
Here is a rookie question. I want to use a for loop to set the visibility on several buttons. Here is what i wanted to do:
for (int y = 0; y < numberOfPeople; y++) {
button[y].hidden = true;
}
where I have 5 buttons named: button1, button2, button3, button4, button5 and number of people is the variable I am sending.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用数组来执行此操作:
您可以通过这种方式定义实例变量,也可以执行以下操作:
You can do this using an array:
You can either define your instance variable this way, or you can do this:
优点是循环不需要知道它有多少个按钮。
Has the advantage that the loop does not need to know how many buttons it has got.