即使我将计数变量 = 设置为 false,我也无法停止此循环。它不会转到 Main 类中调用的下一个方法。任何帮助将不胜感激。
主班
public class Main {
public static void main(String[] args) {
Var V = new Var();
End E = new End();
V.enter();
E.end();
}
}
变量类
public class Var {
static int x = 0;
static boolean count = true;
public static void enter(){
while (count = true ){
x = x+10;
System.out.println(x);
count = false;
}
}
}