可能是一个基本问题,但我想在 switch case 语句中使用多个参数来减少一些代码。可能的?语法正确吗?
switch (myInteger){
case (1): //here I would like to apply multiple arguments as case (1 || 3 || 5)
<#statements#>
break;
case (2):
<#statements#>
break;
default:
break;