Java Programming/Keywords/continue
From Wikibooks, open books for an open world
continue is a Java keyword. It skips the remainder of the loop and continues with the next iteration.
For example:
|
for ( int i=0; i < maxLoopIter; i++ ) {
if ( i == 5 ) { continue; // -- 5 iteration is skipped -- } System.println("Iteration = " +i); } |
See also:
This page may need to be