Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Operator Precedence
Operators are interpreted in order, according to rules.
Apex uses the following operator precedence rules:
| Precedence | Operators | Description |
|---|---|---|
| 1 | {} () ++ -- | Grouping and prefix increments and decrements |
| 2 | ~ ! -x +x (type) new | Unary operators, additive operators, type cast and object creation |
| 3 | * / | Multiplication and division |
| 4 | + - | Addition and subtraction |
| 5 | << >> >>> | Shift Operators |
| 6 | < <= > >= instanceof | Greater-than and less-than comparisons, reference tests |
| 7 | == != | Comparisons: equal and not-equal |
| 8 | & | Bitwise AND |
| 9 | ^ | Bitwise XOR |
| 10 | | | Bitwise OR |
| 11 | && | Logical AND |
| 12 | || | Logical OR |
| 13 | ?? | Null Coalescing |
| 14 | ?: | Ternary |
| 15 | = += -= *= /= &= <<= >>= >>>= | Assignment operators |