The = operator is right associative.
In Core Java, none of the operators are right-associative. All Java operators are left-associative, which means that they are evaluated from left to right when they have the same precedence.
Right-associative operators would be evaluated from right to left, but Java does not have such operators.