C#嵌套switch語句
有可能有一個switch作為外switch語句序列的一部分。即使在內外switch的case常數包含共同的值,不會有衝突出現。
語法:
嵌套switch語句的語法如下:
switch(ch1) { case 'A': printf("This A is part of outer switch" ); switch(ch2) { case 'A': printf("This A is part of inner switch" ); break; case 'B': /* inner B case code */ } break; case 'B': /* outer B case code */ }
例子:
using System; namespace DecisionMaking { class Program { static void Main(string[] args) { int a = 100; int b = 200; switch (a) { case 100: Console.WriteLine("This is part of outer switch "); switch (b) { case 200: Console.WriteLine("This is part of inner switch "); break; } break; } Console.WriteLine("Exact value of a is : {0}", a); Console.WriteLine("Exact value of b is : {0}", b); Console.ReadLine(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
This is part of outer switch This is part of inner switch Exact value of a is : 100 Exact value of b is : 200