测试switch分支结构
`
public static void main(String[] args) {
int a =20;
//byte a = 2;
//short a = 3;
//char a = 4;
//a--可以支持5种类型:byte short int char jdk1.5后支持String
switch(a) {
case 1:System.out.println(1);
case 2:System.out.println(2);break;
case 3:System.out.println(3);
case 4:System.out.println(4);
//1,当成功匹配到case会执行代码,并继续向后穿透所有case包括default
//2,break的作用是结束程序
//3,当没有匹配到任何case时只会执行default的代码
default:System.out.println(0);
}
}
`
BY Healer_小振