我目前正在尝试创建一个代码字符串,如果某些内容为true,它将转到代码中的某一行... 例如:
1 boolean hi = true;
2 boolean hey = true;
3
4 if(hi){
5 hi=false;
6 System.out.println("HI");
7 }
8
9 if(hey=true){
10 hi=true;
11 hey=false;
12 //GO BACK TO LINE 3
13 }
14
如果您有任何方法可以帮助我,这是一个更简单的版本,我试图这样做
答案 0 :(得分:0)
没有偏见 - 相同的功能是使用标签。但标签只能从循环结构中分支到,例如"而#34;。
boolean hi = true;
boolean hey = true;
line3:
while (true) {
if(hi){
hi=false;
System.out.println("HI");
}
if(hey){
hi=true;
hey=false;
break line3;
}
}