终于明白continue的使用

// tsk.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"


int main()
{

    while (1)
    {
        if (1)
        {
            continue;
        }
        printf("continue 使用\n");
    }


    return 0;
}

 

posted @ 2020-03-23 10:02  卷哭你  阅读(660)  评论(0编辑  收藏  举报