我想在for循环的每个循环中更改不同的实例变量。
我无法使用数组或ArrayList
执行此操作,因为变量是@FXML
定义。
请参阅以下示例:
@FXML
public label foo1;
@FXML
public label foo2;
public void changeLabels() {
for (int i = 0; i < 2; i++) {
//Here I want to access the variables foo1/foo2 depending on the value of i
// Thought about something like
// String temp = "foo" + (i + 1);
// but I dont know how to go on
}
}
为什么我不能问这个问题?它被标记为重复,但我解释了为什么相关问题对我不起作用。