bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java Reference
Java•Java Reference

Java continue Keyword

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java continue Keyword?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Order

Put the learning moves in the order that makes the concept easiest to apply.

The continue keyword is used to end the current iteration in a for loop (or a while loop), and continues to the next iteration.
Definition and Usage
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