Priority of operators
+ (sum) - (difference) * (product) / (quotient) % (remainder) ^ (power) | (bitwise OR) & (bitwise AND)
< <= > >= = <> (comparisons) || && ! (logical operations)
:= (assignment)
+= -= *= /= ("in place" arithmetic operations) |= &= ("in place" bitwise operations)
, (indexing) @ (access to class members)
See also:
Table of Content