while(1)是什么意思?
问题描述:
while(1)是什么意思?
答
和while(true)是一个意思.
就是循环测试一直为真,
一般在应用中加入跳出测试条件:
while(1)
{
...
if(什么)
break;
;;;
}这样的.