Content deleted Content added
m Robot-assisted disambiguation (you can help!): C programming language |
m Robot-assisted disambiguation (you can help!): Java programming language |
||
Line 43:
3+4+5-6-7 = ((((3+4)+5)-6)-7).
If an operator is right-associative, the
operators are applied in right-to-left order. In the [[Java (programming language)|Java programming language]], the assignment operator "=" is
right-associative. That is, the Java statement "a = b = c;" is
equivalent to "(a = (b = c));". It first assigns the value of c to
|