码迷,mamicode.com
首页 > 其他好文 > 详细

8 break 和 Continue 之间的区别

时间:2014-06-24 22:09:06      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   2014   os   name   

break: 直接跳出循环

continue:中断本次循环,继续进行下一次循环

        static void breakvsContinue()
        {
            for (int i = 0; i < 10; i++)
            {
                if (i == 0) break;
                DoSomeThingWith(i);
            }

            the break will cause the loop to exit on the first iteration - DoSomeThingWith will never be executed.
            for (int i = 0; i < 10; i++)
            {
                if (i == 0) continue;
                DoSomeThingWith(i);
            }
        }


8 break 和 Continue 之间的区别,布布扣,bubuko.com

8 break 和 Continue 之间的区别

标签:class   blog   code   2014   os   name   

原文地址:http://blog.csdn.net/u011685627/article/details/33356229

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!