Iteration Termination Operators

EXIT, Return and Continue Operators

EXIT operator placed in WHILE, REPEAT, and FOR loop body leads to immediate loop termination. Good programming practice appeals to avoid such a technique, though it's handy enough. Let's consider, for example, array element with defined meaning х.

The easiest way to organize linear iteration is to use FOR loop:

bObtained:= FALSE;

FOR cN := 1 TO Maxlndex DO

   IF x = aX[cN] THEN

       Index := cN;

       bObtained := TRUE;

       EXIT;

   END_IF

END_FOR

For nested loop, EXIT operator finishes only "its" loop, outer loop continues to run.

RETURN operator backs up from component immediately. It's the only way to terminate nested iterations without an additional check for conditions. Though you should not trespass on it because it's difficult to deal with the text of component having, e.g. 50 outputs.

CONTINUE operator leads to immediate moving to the next loop iteration omitting expressions next to CONTINUE.

EXIT and CONTINUE operators can be used only inside WHILE, REPEAT, and FOR loops.

Was this page helpful?