出于某种原因,每当我这样做时:
public class Main {
public static void main(String[] args) {
boolean c = true;
int i = 0;
while (i < 10) {
System.out.println(c);
c = false;
i++;
}
}
}
true
每次都会打印。
编辑:我运行了几次,而不是第 5 次!我很困惑。我想我建错了……我猜。