标签:row system ring int 循环 死循环 stat exception boolean
public static void main(String[] args) throws Exception {
int i = 1;
boolean flag = false;
while (!flag) {
if(i == 0){
System.out.println("child thread xxxx:"+(i));
i=i+1;
}else {
i=i+1;
}
}
}
一直输出 :child thread xxxx .. 血的教训啊。
标签:row system ring int 循环 死循环 stat exception boolean
原文地址:https://www.cnblogs.com/qiumingcheng/p/9953913.html