发布于 2015-07-05 11:53:49 | 192 次阅读 | 评论: 0 | 来源: 网络整理

这是可能switch 的一部分的外switch 语句序列。即使case常量的内部和外部的switch 含有共同值没有冲突就会出现。

语法:

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

例子:


#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 switchn", a );
         switch(b) {
            case 200:
               NSLog(@"This is part of inner switchn", a );
         }
   }
   NSLog(@"Exact value of a is : %dn", a );
   NSLog(@"Exact value of b is : %dn", b );
 
   return 0;
}

让我们编译和运行上面的程序,这将产生以下结果:


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
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务