可能重复:
我可以在 Java 开关中使用 OR 语句吗?
我有一个 switch 语句。有没有办法在 switch 中做一个 or 语句。IE
switch(val){
case 1
//Do Stuff
break;
case 2
//Do Stuff
break;
case 3
//Do Stuff
break
}
而是做类似的事情
switch(val){
case 1 or 3
//Do Stuff
break;
case 2
//Do Stuff
break;
}