while loop
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
执行一个循环.....
使用代码需要多次执行,而一些条件是.
原文:
Used where code needs to be executed several times while some condition is present.
目录 |
[编辑] 语法
while ( cond_expression ) loop_statement
|
|||||||||
[编辑] 解释
cond_expression应该是一个表达式,其结果是转换为bool。 loop_statement,如果只执行cond_expression评估true每次执行前评估.
可以用作终止声明. 原文:
cond_expression shall be an expression, whose result is convertible to bool. It is evaluated before each execution of loop_statement, which is only executed if the cond_expression evaluates to true.
原文:
If the execution of the loop needs to be terminated at some point,
break语句</div> can be used as terminating statement.
原文:
break statement
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
原文:
If the execution of the loop needs to be continued at the end of the loop body,
continue语句</div> can be used as shortcut.
原文:
continue statement
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。