在 Java 中,是否可以编写一个 switch 语句,其中每个 case 包含多个值?例如(尽管显然以下代码不起作用):
switch (num) {
case 1 .. 5:
System.out.println("testing case 1 to 5");
break;
case 6 .. 10:
System.out.println("testing case 6 to 10");
break;
}
我认为这可以在Objective C中完成,Java中有类似的东西吗?还是我应该只使用if
,else if
语句?