Description |
 |
The continue
statement unconditionally transfers control to the loop- continuation
portion of the most tightly enclosing iteration statement. You cannot
use the continue
statement without an enclosing for,
while, or do
statement.
In a while
statement, a continue
causes a branch to the code that tests the controlling expression.
In a do
statement, a continue
statement causes a branch to the code that tests the controlling
expression.
In a for
statement, a continue
causes a branch to the code that evaluates the increment expression.