while (true) { }

Posted thy95

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了while (true) { }相关的知识,希望对你有一定的参考价值。

while(true)是一个无穷循环语句  我们必须在他的循环语句内部加入一个判断  当他达到了什么要求就会跳出

 

int i =1

while(true)

{

if(i>10)break;

i++;

}这样最后弹出的就是11;

 

以上是关于while (true) { }的主要内容,如果未能解决你的问题,请参考以下文章

https://stackoverflow.com/questions/20795295/why-jstack-out-says-thread-state-is-runnable-while-sock

python第二天

True or False? and WHY??? Java HashSet Contains

Java多线程

while循环

Java中对while(true)的理解