1.break
break语句会使运行的程序立即退出包含在其中的最内层循环(结束此次循环且结束该循环控制体)或者switch语句
int i = ;
for(int j = ; j < ; j++)
{ i++;
if(i==)break;
Console.Write(i);
}
结果为:50
2.continue
continue语句跳出本次循环,但不跳出循环体
namespace @continue
{
class Program
{
public static void Main(string[] args)
{
for (int j = ; j < ; j++ )
{
if (j == ) continue;
Console.Write(j);
}
Console.ReadKey();
}
}
}
结果为:12346789
3.return
return语句用于指定函数返回的值,只能出现在函数体内;
4.goto
goto语句将程序控制直接传递给标记语句