不可以,case后面必须加一个常量,如0或者1,'a'等常量值。
那样看你怎么用了, case中可以加语句块
不能,case后面是常量表达式
switch(变量){ case 常量1: { 语句块1; } break; case 常量2: { 语句块2; } break; }