iT邦幫忙

DAY 21
2

C#技術分享系列 第 21

C#技術分享21-[C#]continue及break陳述句

  • 分享至 

  • xImage
  •  

continue陳述句 的功能是 忽略以下的敘述,繼續迴圈的下一個運算
break陳述句的功能是跳離迴圈
因為continue比較少有機會用到,但避免大家忘記,所以特別在此提一下
以下是簡單的範例

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string str = "";
            for (int i = 0; i < 5; i++)
            { 
                    if (i==1)
                    {
                        continue;//繼續往迴圈的下一個數跑
                    } 
                        str += i+",";  
            }
            Console.WriteLine(str);
            str = "";
            for (int i = 0; i < 5; i++)
            {
                if (i == 1)
                {
                    break;//跳離迴圈
                }
                str += i + ",";
            }
            Console.WriteLine(str);       
            Console.Read(); 
        } 
    }
}

上一篇
C#技術分享20-[C#]?:陳述句
下一篇
C#技術分享22-[C#]透過XElement建立xml資料
系列文
C#技術分享30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言