Java Tutorial: Associativity of Operators in Java
Associativity
Associativity tells the direction of the execution of operators. It can either be left to right or vice versa.
/ * -> L to R
+ - -> L to R
++, = -> R to L
Here is the precedence and associativity table which makes it easy for you to understand these topics better:

Quick Quiz: How will you write the following expression in Java?

Code:
Handwritten Notes: Click To Download
Ultimate Java Cheatsheet: Click To Download