Search results

Java: break

Quick summary

  • Break out of the current looping statement and move to the next statement

Eclipse example: loops. Also see the while_loop example.

Detailed description

Many programming languages offer some form of break statement, because the need to stop the current execution path when some condition is met is a common problem. The break statement without a label moves the execution point (the bit of code the program is currently running) to the next statement that is outside of whatever structure contains the break statement. The only structures that can contain break statements are for, while, and do-while loops and switch statements.

The break statement has two forms, one (the most commonly used form) without a label and one with a label. We see several examples of break statements throughout this chapter. A break statement with a label breaks an outer loop, meaning that it is useful only within nested loops.

From Java 7 for Absolute Beginners

By label, break would be like this:

king:

for (int i = 0; i < 8; i++) {
for (int j = 0; j < 8; j++) {
if (pieces[i][j].equals("Black King")) {
x = i;
y = j;
break king;

About Tom Johnson

Tom Johnson

I'm an API technical writer based in the Seattle area. On this blog, I write about topics related to technical writing and communication — such as software documentation, API documentation, AI, information architecture, content strategy, writing processes, plain language, tech comm careers, and more. Check out my API documentation course if you're looking for more info about documenting APIs. Or see my posts on AI and AI course section for more on the latest in AI and tech comm.

If you're a technical writer and want to keep on top of the latest trends in the tech comm, be sure to subscribe to email updates below. You can also learn more about me or contact me. Finally, note that the opinions I express on my blog are my own points of view, not that of my employer.