Previous Topic: OverviewNext Topic: Syntax for Conditional Expressions


General Considerations

Contents

Conditional expressions can contain:

Evaluation of Operators

Operators in a conditional expression are evaluated one at a time, from left to right, in the following order of precedence:

The default order of precedence can be overridden by using parentheses. The expression in the innermost parentheses is evaluated first.

Significant tests in conditional expressions should be coded to the left for greater runtime efficiency.