Objective-C - instructions de commutateur imbriquées

Il est possible d'avoir un commutateur dans le cadre de la séquence d'instructions d'un commutateur externe. Même si les constantes de cas du commutateur interne et externe contiennent des valeurs communes, aucun conflit ne surviendra.

Syntaxe

La syntaxe d'un nested switch la déclaration est la suivante -

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': /* case code */
      }
      break;
   case 'B': /* case code */
}

Exemple

#import <Foundation/Foundation.h>
 
int main () {
   
   /* local variable definition */
   int a = 100;
   int b = 200;
 
   switch(a) {
      case 100: 
         NSLog(@"This is part of outer switch\n", a );
         switch(b) {
            case 200:
               NSLog(@"This is part of inner switch\n", a );
         }
   }
   NSLog(@"Exact value of a is : %d\n", a );
   NSLog(@"Exact value of b is : %d\n", b );
 
   return 0;
}

Lorsque le code ci-dessus est compilé et exécuté, il produit le résultat suivant -

2013-09-07 22:09:20.947 demo[21703] This is part of outer switch
2013-09-07 22:09:20.948 demo[21703] This is part of inner switch
2013-09-07 22:09:20.948 demo[21703] Exact value of a is : 100
2013-09-07 22:09:20.948 demo[21703] Exact value of b is : 200