DEVFYI - Developer Resource - FYI

What is the difference between a break statement and a continue statement?

Java Interview Questions and Answers (part 2)


(Continued from previous question...)

230. What is the difference between a break statement and a continue statement?

A break statement results in the termination of the statement to which it applies (switch, for, do, or while). A continue statement is used to end the current loop iteration and return control to the loop statement.

(Continued on next question...)

Other Interview Questions