尊敬绿草

文章
8
资源
1
加入时间
3年0月20天

While(true)无限循环

while(true)作为无限循环,经常在不知道循环次数的时候使用,并且需要在循环内使用break才会停止。run()方法中基本都会写while(true)的循环,如下:public class XXXThread implements Runnable {public void run(){while(true) {……}}}使用while(true)的作用:...