Is:
x -= y;
equivalent to:
x = x - y;
|
|
No, they are NOT equivalent the way you expressed them.
The problem with the third line is that The exact equivalence is laid out in JLS 15.26.2 Compound Assignment Operators:
So to clarify some of the subtleties:
Java also has Related questions |
|||||||||||||||||||
|
|
Yes, it is. This syntax is the same in most C-derived languages. |
|||
|
|
|
Not exactly. The reason it was introduced in C was to allow the programmer to do some optimizations the compiler couldn't. For example:
used to be compiled much better than
by the compilers of the time. And, if "x" has side effects, e.g "x++" then it is wildly different. |
|||||
|