Operator Type | Operator |
---|---|
Unary Operators | @, Not |
Multiplying Operators | *, /, Div, Mod, And, Shl, Shr |
Adding Operators | +, -, Or, Xor |
Relational Operators | =, <>, <, >, <=, >=, In |
7 + 4 * 2is not the same as:
(7 + 4) * 2Since multiplication has a higher precedence than addition, multiplication is performed first followed by addition. Use parenthesis to separate operations that you want to be performed first.
Typecasts | Table of Content | Statements |