continue statement
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
导致包封for,range-for,while或跳过<div class="t-tr-text"> DO-WHILE
循环体的其余部分.原文:
do-while
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
原文:
Causes the remaining portion of the enclosing for, range-for, while or
DO-WHILE</div> loop body skipped.
原文:
do-while
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
否则尴尬忽略循环使用条件语句的剩余部分时,它是使用.
原文:
Used when it is otherwise awkward to ignore the remaining portion of the loop using conditional statements.
目录 |
[编辑] 语法
continue
|
|||||||||
[编辑] 解释
这条语句作为一个快捷方式到最后的封闭循环体.
原文:
This statement works as a shortcut to the end of the enclosing loop body.
在案件while<div class="t-tr-text"> DO-WHILE
循环,执行的下一条语句条件检查(cond_expression)的。 for循环的情况下,下一个执行的语句是迭代表达式条件检查(iteration_expression,cond_expression)的的。之后,循环将继续正常.原文:
do-while
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
原文:
In case of while or
DO-WHILE</div> loops, the next statement executed is the condition check (cond_expression). In case of for loop, the next statements executed are the iteration expression and condition check (iteration_expression, cond_expression). After that the loop continues as normal.
原文:
do-while
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
[编辑] 关键字
[编辑] 示例
#include <iostream> int main() { for (int i = 0; i < 10; i++) { if (i != 5) continue; std::cout << i << " "; //this statement is skipped each time i!=5 } std::cout << '\n'; for (int j = 0; j < 2; j++) { for (int k = 0; k < 5; k++) { //only this loop is affected by continue if (k == 3) continue; std::cout << j << k << " "; //this statement is skipped each time k==3 } } }
输出:
5 00 01 02 04 10 11 12 14