c++ continue versus break

前端 未结 6 989
抹茶落季
抹茶落季 2020-12-16 15:02

Which statement will be executed after \"continue\" or \"break\" ?

for(int i = 0; i < count; ++i)
 {
     // statement1                                            


        
相关标签:
6条回答
  • 2020-12-16 15:27
    1. For continue, innerloop is executed with new i,j values of i,j+1

    2. For break, innerloop is executed with new i,j values of i+1,0

    ofcourse if boundary conditions are satisfied

    0 讨论(0)
  • 2020-12-16 15:34

    continue ends the current iteration, virtually it is the same as:

    for(int i = 0; i < count; ++i)
     {
         // statement1                                                                                                                                                                                                                          
         for(int j = 0; j < count; ++j)
         {
             //statement2                                                                                                                                                                                                                       
             if(someTest)
                 goto end_of_loop;
    end_of_loop:
         }
         //statement3                                                                                                                                                                                                                           
     }
    

    break exits the loop:

    for(int i = 0; i < count; ++i)
     {   
         // statement1                                                                                                                                                                                                                          
         for(int j = 0; j < count; ++j)
         {   
             //statement2                                                                                                                                                                                                                       
             if(someTest)
                 goto after_loop;
         }
    after_loop:
         //statement3                                                                                                                                                                                                                           
     }
    
    0 讨论(0)
  • 2020-12-16 15:37

    continue: ++j and then if j < count then statement2 otherwise statement3

    break: statement3

    0 讨论(0)
  • 2020-12-16 15:40

    Continue: It depends. The continue statement will execute the 'increment' part of the for-loop, then the 'test' part, and then decide whether to execute the next iteration or leave the loop. So it could be statement 2 or 3.

    Break: statement 3.

    Btw, is this homework?

    0 讨论(0)
  • 2020-12-16 15:41

    Continue jumps straight to the top of the innermost loop, where the per-iteration code and continuance check will be carried out (sections 3 and 2 of the for loop).

    Break jumps straight to immediately after the innermost loop without changing anything.

    It may be easier to think of the former jumping to the closing brace of the innermost loop while the latter jumps just beyond it.

    0 讨论(0)
  • 2020-12-16 15:45

    statement2 will execute after the continue, given that the loop was not in the last iteration.

    statement3 will execute after the break.

    'continue' (as the name suggests) continues the loop, while skipping the rest of the statements in the current iteration.

    'break' breaks and exits from the loop.

    0 讨论(0)
提交回复
热议问题