Precedence
interface Precedence
Determines the order of operations in the absence of parentheses.
For example, multiplication (conventionally) has higher precedence than addition, so x + y * z
is parsed as x + (y * z)
.
Determines the order of operations in the absence of parentheses.
For example, multiplication (conventionally) has higher precedence than addition, so x + y * z
is parsed as x + (y * z)
.