Start Coding Now

Loop Control Statements - Summary

Summary of loop control statements in Java: break, continue, and return.

Summary of Control Statements

StatementDescription
breakExits the loop completely.
continueSkips the current iteration.
returnExits the method (and thus the loop).
Always clear usage of these statements makes loops easier to read and debug.

Frequently Asked Questions