首页 > 代码库 > 十八、流程控制之循环中断
十八、流程控制之循环中断
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _18.流程控制之循环中断 { class Program { static void Main(string[] args) { /** * 循环的中断方式有四种: * (1) break语句立即终止当前所在的循环。 * (2) continue语句立即终止本次循环,继续执行下一次循环。 * (3) goto语句可以跳出循环,到已标记好的位置上。 * (4) return语句跳出循环及其包含的函数。 * */ // 使用break语句中断循环 { int i = 1; while (i <= 10) { if (i == 6) break; Console.WriteLine("{0}", i++); } } // 使用continue语句中断循环 { int i; for (i = 1; i <= 10; i++) { if ((i % 2) == 0) continue; Console.WriteLine(i); } } // 使用goto语句中断循环 // 当使用goto语句跳出循环是合法的,但使用goto语句从外部进入循环是非法的。 { int i = 1; while (i < 10) { if (i == 6) goto exitPoint; Console.WriteLine("{0}", i++); } Console.WriteLine("This code will never be reached."); exitPoint: Console.WriteLine("This code is run when the loop is exited using goto."); } // 使用return语句中断循环 { int i = 0; do { if (i == 6) return; Console.WriteLine("{0}", i++); } while (i < 10); } Console.ReadKey(); } } }
本文出自 “MK IT Life” 博客,请务必保留此出处http://vikxiao.blog.51cto.com/9189404/1587199
十八、流程控制之循环中断
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。