标签:语句 效率 strong break 种类 char 类型 不同 str
switch结构(开关语句)的语法
switch(表达式[dream1] ){
case 常量1[dream2] :
//语句块1
break[dream3] ;
case 常量n[dream4] :
//语句块n
break;
default[dream5] :
//语句块
break;
}
二、 switch结构使用场合: int \char 2种类型的等值判断下使用
三、 switch结构和if结构的异同点
相同点:都可以实现等值判断
不同点:
l 语法不同
l 使用的场合不同
n if结构,侧重于范围判断
n switch结构,侧重于等值判断,类型只能为int、char类型
l 效率
n 在等值判断中,switch结构效率高于if结构
四、 异常处理——hasNextInt();
标签:语句 效率 strong break 种类 char 类型 不同 str
原文地址:http://www.cnblogs.com/abc199812/p/6952517.html