The Labeled break Statement : Break Statement « Statement Control « Java Tutorial






  1. The break statement can be followed by a label.
  2. The presence of a label will transfer control to the start of the code identified by the label.
  3. For example, consider this code.
public class MainClass {
  public static void main(String[] args) {

    OuterLoop: for (int i = 2;; i++) {
      for (int j = 2; j < i; j++) {
        if (i % j == 0) {
          continue OuterLoop;
        }
      }
      System.out.println(i);
      if (i == 37) {
        break OuterLoop;
      }
    }
  }
}
2
3
5
7
11
13
17
19
23
29
31
37








4.8.Break Statement
4.8.1.The break Statement
4.8.2.Using the break Statement in a Loop: break out from a loop
4.8.3.Breaking Indefinite Loops
4.8.4.Labelled breaks breaks out of several levels of nested loops inside a pair of curly braces.
4.8.5.The Labeled break Statement