Java - Break Statement

Java break 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 Break Statement.

  • Break Statement
  • Labeled Break Statement