锘??xml version="1.0" encoding="utf-8" standalone="yes"?>
Meanwhile, if it is underflow, it will became positive and be equal to
Max_Value
2. Operation precedence and order
postfix operators |
[] . (params) expr++ expr-- |
unary operators |
++expr --expr +expr -expr ~ ! |
creation or cast |
new (type)expr |
multiplicative |
* / % |
additive |
+ - |
shift |
<< >> >>> |
relational |
< > >= <= instanceof |
equality |
== != |
AND |
& |
exclusive OR |
^ |
inclusive OR |
| |
conditional AND |
&& |
conditional OR |
|| |
conditional |
?: |
assignment |
= += -= *= /= %= >>= <<= >>>= &= ^= |= |
<< |
Shift bits left, filling with zero bits on the right-hand side |
>> |
Shift bits right, filling with the highest (sign) bit on the left-hand
side |
>>> |
Shift bits right, filling with zero bits on the left-hand side |