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();
}
}
}