How to Break a Loop in Java
In Java, the break
statement causes the execution of a loop to stop. The loop can be a for
, while
, or do...while
loop. To understand how to break out of a loop, follow these four steps.
- Open your text editor and type in the following Java statements.
The array contains dollar amounts for each item of an order. If the dollar amount exceeds $25.00 in the loop, then abreak
statement is issued. This action will cause the loop to stop, and control resumes with the first statement following the loop. - Save your file as BreakALoop.java.
- Open a command prompt and navigate to the directory containing your Java program. Then type in the command to compile the source and hit Enter.
- You are ready to test your program. Type in the command to run the Java runtime launcher and then hit Enter. Notice the loop was stopped when the accumulated amount of the line items exceeded $25.00.