I’m just curious about how Java actually works when it come to if statements. (Note: when I say “component” below I mean the idividual parts checked by the statement, e.g. a, b, c)
Which is more efficient in terms of calculations?
if (a && b && c) { do stuff }
or
if (a) {
if (b) {
if (c) {
do stuff }
}
}
The reason why I ask is because it’s important what Java does in the first version. Does it check every single thing in the statement or does it check a and if it is false then cancel checking the rest of the statement?
If this is the case then it makes sense to put the component most likely to fail as the first component in the statement.
If the whole statement is checked every time then it makes more sense to split the components into a bunch of different statements, as in the second example.
In Java,
&&and||are guaranteed to short-circuit: the operands are evaluated left-to-right, and the evaluation stops as soon as the result is known with certainty.From the JLS:
This means that the two code snippets in your question are exactly equivalent.