Google News
logo
Java - Interview Questions
What are difference between break and continue?
The break keyword halts the execution of the current loop and forces control out of the loop. 
Continue is similar to break, except that instead of halting the execution of the loop, it starts the next iteration.
Advertisement