Possible Duplicate:
What is the relative performance difference of if/else versus switch statement in Java?
Given the following two methods:
public static int useSwitch(int i) {
switch (i) {
case 0:
return 1;
default:
return 0;
}
}
public static int useIf(int i) {
if (i == 0)
return 1;
return 0;
}
testing shows that the switch executes marginally faster (1.4 nanoseconds per call on my machine) than the if version.
I had always believed that the benefit of a switch didn't kick in until at least a few ifs could be avoided,
Why is switch faster than a single if?
lookupswitchortableswitchinstruction, while the second will use normal jumps. It's all up to the JVM to make them work fast. – templatetypedef Dec 30 '12 at 19:47nanoTime()forfor (int i = 0; i < 999999; i++) x += useIf(i)(xis asserted) – Bohemian Dec 30 '12 at 19:50