Selection
Conditional Operator If
Selection operator allows executing of various expression groups depending on conditions of Boolean expressions.
![]() | Operator
|
If <Boolean expression IF>
is TRUE
, first group <expression IF>
expressions are executed. Other expressions are ignored, alternative conditions are not checked. The part of construction in brackets is optional, it can be missed. If <Boolean expression IF>
is FALSE
, conditions ELSIF
are checked one by one. The first true condition leads to corresponding expression group execution. Other conditions ELSIF
are not analyzed. There can be several or zero ELSIF
groups. If all Boolean expressions gave the false result, ELSE
group expressions are executed (if there is such a group). If there is no ELSE
group, nothing is executed.
![]() | In simplest case, operator
|
![]() | At first sight, construction
|
Multiple Selector Case
Multiple selector CASE
allows executing diverse expression groups depending on the meaning of integer variable or expression.
![]() | Syntax:
|
If expression value is the same as specified constant, the corresponding expression group is executed. Other conditions are not analyzed. (<value 1>: <expression 1> ;)
.
If several constant values must correspond with expression group, they can be specified and separated by comma. (<value 2> , <value 3> : <value 3> ;)
.
Value range can be defined by colon (<value 4>..<value 5> : <expression 4> ;)
.
ELSE
expression group is optional. It's executed under mismatching of neither of conditions (<expression ELSE> ;)
.
![]() | Example:
|
Was this page helpful?