Just trying to figure out how to use many multiple cases for a Java switch statement. Here’s an example of what I’m trying to do:
JavaScript
x
switch (variable)
{
case 5..100:
doSomething();
break;
}
versus having to do:
JavaScript
switch (variable)
{
case 5:
case 6:
etc.
case 100:
doSomething();
break;
}
Any ideas if this possible, or what a good alternative is?
Advertisement
Answer
Sadly, it’s not possible in Java. You’ll have to resort to using if-else
statements.