- Objective-C 基础
- Objective-C - 首页
- Objective-C - 概述
- Objective-C - 配置环境
- Objective-C - 程序结构
- Objective-C - 基本语法
- Objective-C - 数据类型
- Objective-C - 变量
- Objective-C - 常量
- Objective-C - 操作符
- Objective-C - 循环
- Objective-C - 决策
- Objective-C - 函数
- Objective-C - 块
- Objective-C - 数字
- Objective-C - 数组
- Objective-C - 指针
- Objective-C - 字符串
- Objective-C - 结构
- Objective-C - 预处理器
- Objective-C - 类型定义
- Objective-C - 类型转换
- Objective-C - 日志记录
- Objective-C - 错误处理
- 命令行参数
- 高级 Objective-C
- Objective-C - 类及对象
- Objective-C - 继承
- Objective-C - 多态
- Objective-C - 数据封装
- Objective-C - 类别
- Objective-C - 冒充
- Objective-C - 扩展
- Objective-C - 协议
- Objective-C - 动态绑定
- Objective-C - 复合对象
- Obj-C - Foundation 框架
- Objective-C - 快速枚举
- Obj-C - 内存管理
- Objective-C 有用资源
- Objective-C - 快速指南
- Objective-C - 有用资源
- Objective-C - 讨论
Objective-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': /* 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 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;
}
编译并执行上述代码时,会产生以下结果 −
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
objective_c_decision_making.htm
广告