< Java Programming < Keywords 
      continue is a Java keyword. It skips the remainder of the loop and continues with the next iteration. 
For example:
|  | int maxLoopIter = 7;
for (int i = 0; i < maxLoopIter; i++ ) {
   if (i == 5) {
      continue;  // -- 5 iteration is skipped --
   }
   System.println("Iteration = " + i);
}
 | 
results in
0 1 2 3 4 6 7
See also
    This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.