Over 500 Magazines for FREE!

Yes! You can subscribe to ALL of them. They will be shipped to your home FREE of cost!
Kindly click here to apply!

Break Statement

Break statement is one of the several control statements Java provide to control the flow of the program. As the name says, Break Statement is generally used to break the loop of switch statement.

Please note that Java does not provide Go To statement like other programming languages e.g. C, C++.

Break statement has two forms labeled and unlabeled.

Unlabeled Break statement

This form of break statement is used to jump out of the loop when specific condition occurs. This form of break statement is also used in switch statement.

For example,

  1. for(int var =0; var < 5 ; var++)
  2. {
  3. System.out.println(“Var is :+ var);
  4.  
  5. if(var == 3)
  6. break;
  7. }

In above break statement example, control will jump out of loop when var becomes 3.

Labeled Break Statement

The unlabeled version of the break statement is used when we want to jump out of a single loop or single case in switch statement. Labeled version of the break statement is used when we want to jump out of nested or multiple loops.

For example,

  1. Outer:
  2. for(int var1=0; var1 < 5 ; var1++)
  3. {
  4. for(int var2 = 1; var2 < 5; var2++)
  5. {
  6. System.out.println(“var1:+ var1 + “, var2:+ var2);
  7.  
  8. if(var1 == 3)
  9. break Outer;
  10.  
  11. }
  12. }

Post new comment

To combat spam, please enter the code in the image.




Do you have a better example?
We're sure you have hundreds of Java program examples.

Spare some time and submit your java example here even if you think it's too small to contribute.

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!