contents   index   previous   next



continue

 

The continue statement ends the current iteration of a loop and begins the next. Any conditional expressions are reevaluated before the loop reiterates. The continue statement works with the same loops as the break statement.

 


switch, case, and default