continue statement

continue statement

Continue statement is used in loop body only. Its general form is continue;

Semanteme: finish this loop and not execute the other statement behind continue statement in the loop body any more, turn to judge and execute the next loop condition. Pay attention: this statement only ends the loop on this layer and will not exit the loop.