bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java continue Keyword

❮ Java Keywords

i

Definition and Usage

The continue keyword is used to end the current iteration in a for loop (or a while loop), and continues to the next iteration.

Related Pages

Use the break keyword to break out of a loop.

Read more about for loops in our Java For Loops Tutorial .

Read more about while loops in our Java While Loops Tutorial .

Read more about break and continue in our Java Break Tutorial .

❮ Java Keywords

Previous

Java class Keyword

Next

Java default Keyword