Can anyone tell me the difference between break and continue statements?Thanks.
|
|
|||||
|
|
|
Break leaves a loop, continue jumps to the next iteration. |
||||||||||||
|
|
|
See Branching Statements for more details and code samples: breakThe break statement has two forms: labeled and unlabeled. You saw the unlabeled form in the previous discussion of the switch statement. You can also use an unlabeled break to terminate a for, while, or do-while loop [...] An unlabeled break statement terminates the innermost switch, for, while, or do-while statement, but a labeled break terminates an outer statement. continueThe continue statement skips the current iteration of a for, while , or do-while loop. The unlabeled form skips to the end of the innermost loop's body and evaluates the boolean expression that controls the loop. [...] A labeled continue statement skips the current iteration of an outer loop marked with the given label. |
|||
|
|
|
|
break completely exits the loop. Continue skips the statements after the continue statement and keeps looping. |
||
|
|
|
|
A A |
|||
|
|
|
|
The |
||
|
|
|
|
Simply put: break will terminate the current loop, and continue execution at the first line after the loop ends. continue jumps back to the loop condition and keeps running the loop. |
||
|
|
|
|
The |
||
|
|
|
|
here's the semantic of break:
here's the semantic of continue:
|
||||||
|
|
|
so you are inside a for or while loop. Using break; will put you outside of the loop. As in, it will end. Continue; will tell it to run the next iteration. No point in using continue in if statement, but break; is useful. In switch...case, always use break; to end a case, so it does not executes another case. |
||
|
|
|
|
I'm going to put a graphic
|
||
|
|
|
|
Simple Example: Break leave the loop
Continue will go back to start loop.
|
||
|
|
|
|
Excellent answer simple and accurate. I would add a code sample.
|
|||
|
|
|
|
Consider the following:
break causes the loop to terminate and the value of n is 0.
continue causes the program counter to return to the first line of the loop (the condition is checked and the value of n is increment) and the final value of n is 10. It should also be noted that break only terminates the execution of the loop it is within:
Will output something to the effect of
|
||||
|
