D 程式設計——巢狀 switch 語句



switch 可能存在於外部 switch 語句的語句序列中。即使內部和外部 switch 的 case 常量包含相同的值,也不會發生任何衝突。

語法

巢狀 switch 語句的語法如下 −

switch(ch1) { 
   case 'A':  
      writefln("This A is part of outer switch" ); 
      switch(ch2) { 
         case 'A': 
            writefln("This A is part of inner switch" ); 
            break; 
         case 'B': /* case code */ 
      } 
      break; 
   case 'B': /* case code */ 
}

示例

import std.stdio;

int main () { 
   /* local variable definition */ 
   int a = 100; 
   int b = 200;  
   
   switch(a) {
      case 100: 
         writefln("This is part of outer switch", a ); 
         switch(b) { 
            case 200: 
               writefln("This is part of inner switch", a ); 
            default: 
               break; 
         } 
      default: 
      break; 
   } 
   writefln("Exact value of a is : %d", a ); 
   writefln("Exact value of b is : %d", b ); 
  
   return 0; 
}

當編譯並執行上述程式碼時,會產生以下結果 −

This is part of outer switch 
This is part of inner switch 
Exact value of a is : 100 
Exact value of b is : 200 
d_programming_decisions.htm
廣告