在C#中,switch
语句和case
关键字一起使用,用于根据不同的条件执行不同的代码块。switch
语句允许你根据一个表达式的值来选择执行哪个case
标签下的代码。下面是一个简单的示例:
using System;
class Program
{
static void Main()
{
int number = 2;
switch (number)
{
case 1:
Console.WriteLine("Number is 1.");
break;
case 2:
Console.WriteLine("Number is 2.");
break;
case 3:
Console.WriteLine("Number is 3.");
break;
default:
Console.WriteLine("Number is not 1, 2, or 3.");
break;
}
}
}
在这个示例中,我们定义了一个名为number
的整数变量,并将其值设置为2。然后,我们使用switch
语句来根据number
的值执行不同的代码块。在这种情况下,程序将输出"Number is 2.",因为number
的值等于2,与case 2
标签匹配。
注意,每个case
标签后面都有一个break
语句。这是为了防止代码“贯穿”(fall-through)到下一个case
标签。如果没有break
语句,程序将继续执行下一个case
标签下的代码,直到遇到break
语句或switch
语句结束。在上面的示例中,由于每个case
标签后面都有一个break
语句,因此程序只会输出"Number is 2.",而不会输出"Number is 3.“或"Number is not 1, 2, or 3.”。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c#中drawstring使用要注意哪些事项