當(dāng)您要針對三個或更多條件測試變量時,可以使用 switch 語句代替 if else 語句。在這里,您將了解switch語句以及如何在C#程序中有效地使用它。
以下是switch語句的一般語法。
語法:
switch(match expression/variable) { case constant-value: //要執(zhí)行的語句; break; default: //要執(zhí)行的語句; break; }
switch語句以switch關(guān)鍵字開頭,該關(guān)鍵字包含一個匹配表達(dá)式或括號switch(匹配表達(dá)式 match expression)中的變量。這個匹配表達(dá)式或變量的結(jié)果將根據(jù)在花括號{}內(nèi)指定的case條件進(jìn)行測試。case必須用唯一的常量值指定,并以冒號:結(jié)束。每種情況包括一個或多個要執(zhí)行的語句。如果常量值和匹配表達(dá)式/變量的值相等,則執(zhí)行case。switch語句還可以包含一個可選的默認(rèn)標(biāo)簽。如果沒有執(zhí)行case,則執(zhí)行 default 標(biāo)簽。break、return或goto關(guān)鍵字用于從 switch 情況中退出程序控制。
以下示例演示了一個簡單的switch語句。
int x = 10; switch (x) { case 5: Console.WriteLine("x的值是5"); break; case 10: Console.WriteLine("x的值是10"); break; case 15: Console.WriteLine("x的值是15"); break; default: Console.WriteLine("未知值"); break; }
x的值是10
上面,switch (x)語句包含一個變量 x,其值將與每個 case 值的值匹配。上面的 switch 語句包含常量值5、10和15的三種情況。它還包含 default 標(biāo)簽,如果沒有任何 case 值與 switch 變量/表達(dá)式 匹配,將執(zhí)行該標(biāo)簽。每個case在 : 之后開始,并包含一個要執(zhí)行的語句。X 的值與第二種情況下的值10: 匹配,因此輸出值為 x 的值是10。
switch語句可以包含任何返回值類型為char,string,bool,int或enum的非空表達(dá)式。
switch語句還可以包含一個表達(dá)式,它的結(jié)果將在運(yùn)行時針對每個 case 進(jìn)行測試。
int x = 125; switch (x % 2) { case 0: Console.WriteLine($"{x} 為偶數(shù)"); break; case 1: Console.WriteLine($"{x} 是奇數(shù)"); break; }
125是奇數(shù)
Switch Case 必須是唯一的常數(shù)值。它可以是bool,char,string,integer,enum或相應(yīng)的可為null的類型。
在c# 7.0之后,switch case可以包含非唯一值。在這種情況下,將執(zhí)行第一個匹配的case。
考慮以下簡單的switch語句示例。
string statementType = "switch"; switch (statementType) { case "if.else": Console.WriteLine("if...else statement"); break; case "ternary": Console.WriteLine("Ternary operator"); break; case "switch": Console.WriteLine("switch statement"); break; }
switch statement
可以組合多個 case 來執(zhí)行相同的語句。
int x = 5; switch (x) { case 1: Console.WriteLine("x = 1"); break; case 2: Console.WriteLine("x = 2"); break; case 4: case 5: Console.WriteLine("x = 4 or x = 5"); break; default: Console.WriteLine("x > 5"); break; }
每個case必須通過使用break、return、goto語句或其他方式顯式地退出case,確保程序控制退出一個case,并且不會進(jìn)入默認(rèn)的case。
以下使用 return 關(guān)鍵字。
static void Main(string[] args) { int x = 125; Console.Write( isOdd(x)? "偶數(shù)值" : "奇數(shù)值"); } static bool isOdd(int i, int j) { switch (x % 2) { case 0: return true; case 1: return false; default: return false; } return false; }
奇數(shù)值
沒有break、return或goto語句或具有相同常量值的switch case將產(chǎn)生編譯時錯誤。
int x = 1; switch (x) { case 0: Console.WriteLine($"{x} is even value"); break; case 1: Console.WriteLine($"{x} is odd Value"); break; case 1: // 錯誤-控件無法從一個case標(biāo)簽(“ case 1:”)進(jìn)入另一個 case 標(biāo)簽 Console.WriteLine($"{x} is odd Value"); defaut: Console.WriteLine($"{x} is odd Value"); break; }
一個switch語句可以在另一個switch語句中使用。
int j = 5; switch (j) { case 5: Console.WriteLine(5); switch (j - 1) { case 4: Console.WriteLine(4); switch (j - 2) { case 3: Console.WriteLine(3); break; } break; } break; case 10: Console.WriteLine(10); break; case 15: Console.WriteLine(15); break; default: Console.WriteLine(100); break; }
5 4 3
switch 語句是 if else 語句的代替方法。
switch 語句根據(jù)指定為 case 的一組常量測試匹配表達(dá)式/變量。
switch case 必須包含break、return、goto關(guān)鍵字才能退出 case。
switch 可以包含一個可選的 default 標(biāo)簽,當(dāng)不執(zhí)行case時將執(zhí)行該標(biāo)簽。
C#編譯器將給出關(guān)于case缺少:,常量值的錯誤,并退出case。
從C#7.0起,switch 條件可以包含非唯一值。在這種情況下,將執(zhí)行第一個匹配情況。