无条件循环&有条件循环
无条件循环&有条件循环
通常,如果要写一个无限循环,我们可以这么写:
while ( 1 ) { /* ... ... */ }
这么写完全正确。不过,while (1) 是一个有条件循环,每次循环都会判断 1 的真假性, 因为 1 永远为真,所以这个循环会无限执行。正因为 while (1) 是有条件循环, 所以在效率上比无条件循环要略孙一筹。哪怎么写无条件循环呢? 很简单。请看:
for ( /* 可以有代码 */; /* 必须为空 */; /* 可以有代码 */ ) { /* ... ... */ }
上面的代码就是一个无条件循环,每次循环不用进行任何判断,所以效率比 while (1) 高。
来源: C/C++ 标准编程
0 评论
Recommended Comments
没有要显示的评论。
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new account登录
Already have an account? Sign in here.
现在登录