码迷,mamicode.com
首页 > 其他好文 > 详细

整形越界,死循环,产生莫名其妙的问题

时间:2018-11-13 20:30:21      阅读:170      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!