开发者

sequence points in java

Is there a guaranteed sequence of execution of the following java code:

int开发者_StackOverflow i = getA() + getB();

Is getA() always executed before getB(), as any average person would expect?


Yes, it is. From the JLS, section 15.7:

The Java programming language guarantees that the operands of operators appear to be evaluated in a specific evaluation order, namely, from left to right.

It is recommended that code not rely crucially on this specification. Code is usually clearer when each expression contains at most one side effect, as its outermost operation, and when code does not depend on exactly which exception arises as a consequence of the left-to-right evaluation of expressions.

...

The left-hand operand of a binary operator appears to be fully evaluated before any part of the right-hand operand is evaluated.

and also:

The Java programming language also guarantees that every operand of an operator (except the conditional operators &&, ||, and ? :) appears to be fully evaluated before any part of the operation itself is performed.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜