vote up 5 vote down star

Can anyone tell me the difference between break and continue statements?Thanks.

flag

lol - this question got 30 points? – mson Jan 20 '09 at 18:24
Hey - when you start at 200 points, you need (and deserve) another 30. Same principle for the Answer bonanza! :>D – le dorfier Jan 21 '09 at 1:36

13 Answers

vote up 26 vote down check

Break leaves a loop, continue jumps to the next iteration.

link|flag
1  
You're fast. Enjoy your silver badge. – mmyers Jan 20 '09 at 18:05
I hope I'l get my first, if he accepts the answer... Seems a lot of people ask questions at SO, but don't accept an answer if there is one... – Peter Jan 20 '09 at 18:07
Yeahaaa, got it, thx g – Peter Jan 20 '09 at 18:08
Note that Java also contains labeled continue/break statements which have different semantics :-) – Jay Jan 20 '09 at 18:14
This is just the basics of break and continue. For a better explanation look at Jay's Post – Peter Jan 20 '09 at 18:16
show 1 more comment
vote up 18 vote down

See Branching Statements for more details and code samples:

break

The 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.

continue

The 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.

link|flag
vote up 3 vote down

break completely exits the loop. Continue skips the statements after the continue statement and keeps looping.

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

The break statement breaks out of the loop (the next statement to be executed is the first one after the closing brace), while continue starts the loop over at the next iteration.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

The break statement exists the current looping control structure and jumps behind it while the continue exits too but jumping back to the looping condition.

link|flag
vote up 1 vote down

here's the semantic of break:

int[] a = new int[] { 1, 3, 4, 6, 7, 9, 10 };
// find 9
for(int i = 0; i < a.Length; i++)
{
    if (a[i] == 9) 
        goto goBreak;

    Console.WriteLine(a[i].ToString());      
}
goBreak:;

here's the semantic of continue:

int[] a = new int[] { 1, 3, 4, 6, 7, 9, 10 };
// skip all odds
for(int i = 0; i < a.Length; i++)
{
    if (a[i] % 2 == 1) 
        goto goContinue;

    Console.WriteLine(a[i].ToString());      

goContinue:;
}
link|flag
In case some was wondering how to do it in C# ??? :) – Oscar Reyes Jan 20 '09 at 18:13
Doesn't C# have break; and continue; statements? I can't believe it. – Oscar Reyes Jan 20 '09 at 18:14
Yeah C# have, I just explain the semantics of break and continue :-) – Michael Buen Jan 20 '09 at 18:19
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I'm going to put a graphic

  |>for(int i=0; i < 10; i++) {
  |     ....
  ------continue; // goto next iteration
        ....
    }         


    for(int i=0; i < 10; i++) {
        ....
  ------break; // jump out of this loop
  |     ....    
  |}   
  |>
link|flag
vote up 0 vote down

Simple Example:

Break leave the loop

int m = 0;
for(int n = 0; n < 5; ++n){
  if(n == 2){
    break;
  }
  m++;
}

System.out.printl("m:"+m); // m:2

Continue will go back to start loop.

int m = 0;
for(int n = 0; n < 5; ++n){
  if(n == 2){
    continue; // Go back to start and dont execute m++
  }
  m++;
}

System.out.printl("m:"+m); // m:4
link|flag
vote up 0 vote down

Excellent answer simple and accurate.

I would add a code sample.

C:\oreyes\samples\java\breakcontinue>type BreakContinue.java

    class BreakContinue {

        public static void main( String [] args ) {

               for( int i = 0 ; i < 10 ; i++ ) {

                     if( i % 2 == 0) { // if pair, will jump
                         continue; // don't go to "System.out.print" below.
                     }

                     System.out.println("The number is " + i );

                     if( i == 7 ) {
                         break; // will end the execution, 8,9 wont be processed
                      }

               }
        }

    }

C:\oreyes\samples\java\breakcontinue>java BreakContinue
The number is 1
The number is 3
The number is 5
The number is 7
link|flag
vote up 0 vote down

Consider the following:

int n;
for(n = 0; n < 10; ++n) {
    break;
}
System.out.println(n);

break causes the loop to terminate and the value of n is 0.

int n;
for(n = 0; n < 10; ++n) {
    continue;
}
System.out.println(n);

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:

int m;
for(m = 0; m < 5; ++m)
{
    int n;
    for(n = 0; n < 5; ++n) {
    	break;
    }
    System.out.println(n);
}
System.out.println(m);

Will output something to the effect of

0
0
0
0
0
5
link|flag
You've got variable scoping problems in your examples. – Darron Jan 20 '09 at 18:51
I'm aware of that I was being lazy. – Kevin Loney Jan 21 '09 at 1:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.