c++ continue versus break

2019-04-04 14:29发布

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

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

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

6条回答
对你真心纯属浪费
2楼-- · 2019-04-04 14:58

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

break: statement3

查看更多
Explosion°爆炸
3楼-- · 2019-04-04 15:05

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.

查看更多
做个烂人
4楼-- · 2019-04-04 15:14

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                                                                                                                                                                                                                           
 }
查看更多
在下西门庆
5楼-- · 2019-04-04 15:15

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?

查看更多
Summer. ? 凉城
6楼-- · 2019-04-04 15:17
  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

查看更多
爷、活的狠高调
7楼-- · 2019-04-04 15:20

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.

查看更多
登录 后发表回答