An example of thee shorthand Java Arithmetic operator is a += 4;
for a=a+4;
In The Complete Reference, Java 2, Herbert Schildt mentions "they are implemented more efficiently by the Java run-time system than are their equivalent"
What makes its implementation more efficient than a=a+4;