悬垂 else
示例:
int x = 10;
int y = 10;
if (x == 10)
if (y == 10)
System.out.println("aaa");
else
System.out.println("bbb");
注:if / else语句中可以不加大括号,但只能写一条语句;此时else和最接近的 if 匹配
switch 语句
基本语法:
switch(整数|枚举|字符|字符串){
case 内容1 : {
内容满足时执行语句;
[break;]
}
case 内容2 : {
内容满足时执行语句;
[break;]
}
...
default:{
内容都不满足时执行语句;
[break;]
}
}
switch(表达式) 中表达式接收的类型包括:
整数(只包括byte、short、int)字符(char)字符串(String)枚举类型(区别C语言)