Java Break Statement
The Java break is used to break loop or switch statement. It breaks the current flow of the program at specified condition. In case of inner loop, it breaks only inner loop.
Syntax:
Java Break Statement with Loop
Example:
Output:
1 2 3 4
Java Break Statement with Inner Loop
It breaks inner loop only if you use break statement inside the inner loop.
Example:
Output:
1 1 1 2 1 3 2 1 3 1 3 2 3 3
Java Break Statement with Switch
To understand the example of break with switch statement, please visit here: Java Switch Statement.
Nice explanation of the concept. Thanks a lot..
ReplyDeleteCheers,
http://www.flowerbrackets.com/switch-statement-java/