Java - Continue Statement

Java continue statement is a branching statement in a control flow statement and it will terminate the iteration of a loop even though the looping expression is valid (i.e., true). There are two types of continue Statement.

  • Continue Statement
  • Labeled Continue Statement