continue statement

来自cppreference.com
< c‎ | language

循环体的其余部分.
原文:
否则尴尬忽略循环使用条件语句的剩余部分时,它是使用.
原文:
Used when it is otherwise awkward to ignore the remaining portion of the loop using conditional statements.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 语法

continue

[编辑] 解释

这条语句作为一个快捷方式到最后的封闭循环体.
原文:
This statement works as a shortcut to the end of the enclosing loop body.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
循环,执行的下一条语句条件检查(cond_expression)的。 for循环的情况下,下一个执行的语句是迭代表达式条件检查(iteration_expressioncond_expression)的的。之后,循环将继续正常.
原文:
In case of while or
DO-WHILE
原文:
do-while
这段文字是通过 [http://translate.google.com Google Translate] 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击[http://en.cppreference.com/w/Cppreference:MachineTranslations 这里]。
</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.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 关键字

continue

[编辑] 示例

#include <stdio.h>
 
int main() 
{
    for (int i = 0; i < 10; i++) {
        if (i != 5) continue;
        printf("%d ", i);       //this statement is skipped each time i!=5
    }
 
    printf("\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;
            printf("%d%d ", j, k);    //this statement is skipped each time k==3
        }
    }
}

输出:

5
00 01 02 04 10 11 12 14