do-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. the code is executed at least once.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 语法

do loop_statement while ( cond_expression )

[编辑] 解释

cond_expression应该是一个表达式,其结果是转换为bool。评估后,每次执行loop_statement。循环继续执行,只有当cond_expression评估true.
原文:
cond_expression shall be an expression, whose result is convertible to bool. It is evaluated after each execution of loop_statement. The loop continues execution only 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 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 关键字

do, while

[编辑] 示例