|
This chapter presented 16 Java operations. Their evaluation precedence is shown in Table 3.6. Higher-precedence operators, the ones that are evaluated first, appear at the top.
| Category | Operators |
|---|---|
| Unary | + - ! ~ ++ -- |
| Higher-precedence arithmetic | * / % |
| Lower-precedence arithmetic | + - |
| Shift | >> << >>> |
| Bitwise | & ^ | |
| Short circuit | && || |
|