Next: Ternary Operator Syntax, Previous: The Binary Operators, Up: Operators [Index]
Operator | Associativity |
---|---|
[] | Left to right |
* | Left to right |
/ | |
% | |
+ | Left to right |
- | |
<< | Left to right |
>> | |
< | Left to right |
<= | |
> | |
>= | |
== | Left to right |
!= | |
& | Left to right |
^ | Left to right |
| | Left to right |
&& | Left to right |
|| | Left to right |
= | Right to left |
+= | |
-= | |
*= | |
/= | |
%= | |
&= | |
^= | |
|= | |
<<= | |
>>= |
aime operator precedence is identical with that of the C programming language.