<<< The continue statement | Index | Labeled continue example >>> |
The syntax of the labeled continue statement
continue labelName;
The structure of the labeled continue statement
labelName: loop declaration { statements another loop declaration { statements if (conditionalExpression) { statements continue labelName; } } }
<<< The continue statement | Index | Labeled continue example >>> |