while loop

来自cppreference.com
< c‎ | language

执行一个循环.....
原文:
Executes a loop.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
使用代码需要多次执行,而一些条件是.
原文:
Used where code needs to be executed several times while some condition is present.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 语法

while ( cond_expression ) loop_statement

[编辑] 解释

cond_expression应该是一个表达式,其结果是转换为boolloop_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.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
​​可以用作终止声明.
原文:
If the execution of the loop needs to be terminated at some point,
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
可以用作快捷.
原文:
If the execution of the loop needs to be continued at the end of the loop body,
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 关键字

while

[编辑] 示例