public class Try {
public static void main(String[] args) {
int i=0;
while(i<10)
{
System.out.println("Hello World");
if (i==6)
{
// The Execution pointer should go back to this statement (int i=0);
}
i++;
}
}
}
我们goto
在 VB 中使用关键字将执行指针放在特定的语句集上。请告诉我这在 Java 中是如何实现的。我们如何将执行指针放在特定的语句集上?