switch不明白怎么用
switch(n){ //n 可以byte、short、int或者cha表达式 或变量
case 0: //每个case后面跟一个要比较的值(常量)和冒号,n的数据类型和常量类型一样;
程序块;
break;
case 1:
case 2:
default:
}