Shorthand Assignment Operators Java offers special shorthands that simplify the coding of a certain type of Assignment statement. For example, a = a+10; can be written as, a+=10; The operator pair += tells the compiler to assign to a the value of a+10. This shorthand works for all the binary operators in Java( those that requires two operands ). The general form of Java Shorthand is : ...