c#——switchcase语句
c#——switch case语句
c#中的switch case语句有三种结构,具体形式如下图所⽰:
{
class Program
{
static void Main(string[] args)
{
int i = 2;
switch(i)
{
case 2:
Console.WriteLine("你真2!"); Console.WriteLine("你真有才!"); break;
case 4:
Console.WriteLine("你吧!"); break;
case 8:
Console.WriteLine("发发发!"); break;
}
Console.ReadKey();
}
}
}
(2)Switch的第⼆种结构:
switch(i)
case 1:
//
break;
case2:
//
break;
default:
//
break;
{
class Program
{
static void Main(string[] args)
{
int i = 9;
switch(i)
{
case 2: //相当于if(if==2)
Console.WriteLine("你真2!");
Console.WriteLine("你真有才!");
break; //C#中必须写break
case 4:
Console.WriteLine("你吧!");
break;
case 8:
Console.WriteLine("发发发!");
break;
default: //相当于if语句的else
Console.WriteLine("你输⼊的{0}没有意义",i);
break;
}
Console.ReadKey();
}
}
}
注意:C#中的switch语句必须写break,不写不⾏,但有⼀种情况除,合并了case情况,可以不写break。(如例3):Switch的第三种结构:合并了case情况,以省略break.
switch(i)
case 1:
case2:
//
break;
例3:
[csharp] view plaincopyprint?
namespace Switch
{
class Program
{
static void Main(string[] args)
{
int i = 200;
int i = 200;
switch(i)
{
case 2: //相当于if(if==2)
Console.WriteLine("你真2!");
Console.WriteLine("你真有才!");
break; //C#中必须写break
case 4:
Console.WriteLine("你吧!");
break;
case 8:
Console.WriteLine("发发发!");
break;
/*
case 100:
Console.WriteLine("你输⼊的是整钱!");
Console.WriteLine("你真有钱");
break;
case 200:
Console.WriteLine("你输⼊的是整钱!");
Console.WriteLine("你真有钱");
break;switch语句必须使用break吗
*/
//上⾯的代码等同于下⾯的代码
case 100:
case 200: //相当于if(i=100||i=200),唯⼀⼀个case后不⽤break的情况 Console.WriteLine("你输⼊的是整钱!");
Console.WriteLine("你真有钱");
break;
default: //相当于if语句的else
Console.WriteLine("你输⼊的{0}没有意义",i);
break;
}
Console.ReadKey();
}
}
}
注意:switch语句中case 的值只能是⽤2,4,"aaa" 等常量,不能是变量、表达式。(如例4)例4
[csharp] view plaincopyprint?
namespace Switch
{
class Program
{
static void Main(string[] args)
{
string s1 = Console.ReadLine();
int i = Convert.ToInt32(s1);
int k = 10;
switch(k)
{
case i: //错误:case中值只能⽤2,4,"aaa" 等常量,不能写变量
Console.WriteLine("你输⼊的和程序假定的⼀样!");
break; //C#中必须写break
}
Console.ReadKey();
}
}
}
总结:switch语句和if语句的区别:
●⼤于等于(>=)、⼩于等于(<=)的判断⽤if语句,⽽等于(=)的判断⽤switch语句。
● switch语句中的case类似于if…else…else if…else,但是离散值的判断。
(离散值的判断⾃认为是等于情况的判断)。
● switch⼀般都可以及⽤if重写,但是if不⼀定能⽤switch重写(如例2)。
●不要忘了break.C#中break不写是不⾏的,除了合并case的情况(如例3)。
● case 中的值必须是常量,不能是变量、表达式(如例4)。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论