where exactly does iteration go after this, to my mind does this now
exit the whole loop
Yes, since you are breaking out of outer loop. So, it will exit the whole loop you can say.
Where is the next point of iteration?
There is not iteration after you break out of your outer loop.
How is there any further iterations if the outside loop is exited ?
No, there will not be any further iteration. Why would you expect any further iteration? When you break out of a loop, then the further iteration of that loop will not run.
For getting the output, try stepping through your code step by step. Take a paper and pencil out, and for each iteraion write the value of j and k, and see which if is getting executed each time.
Note that, your 2nd if is only breaking out of the inner for loop.
Here are your two if conditions: -
if(j==3 && k==1) break foreach; // 1
if(j==0 || j==2) break; // 2
Iterations: -
1). j = 0, k = 0: - Prints 0. First if fails, second if succeeds. You break out of inner loop. Continue with outer (j++)
2). j = 1, k = 0: - Prints 1. First if fails, second if fails. Continue inner loop (k++)
3). j = 1, k = 1: - Prints 1. Both if fails. Continue inner loop (k++)
4). j = 1, k = 2: - Prints 1. Both if fails. Continue inner loop (k++)
5). j = 1, k = 3: - Inner loop condition fails. Continue outer loop (j++, k = 0)
6). j = 2, k = 0: - Prints 2. First if fails. Second if succeeds. Break inner loop. Continue outer loop (j++)
7). j = 3, k = 0: - Prints 3. Both if fails. Continue inner loop. (k++)
8). j = 3, k = 1: - Prints 3. First if succeeds. Breakes out of outer loop. Iteration ends.
Now see, what are the print statements: -
0111233
break foreachwill only be executed once, and then it will break out of your outer loop, thus stopping the iteration. See my answer, I have posted the complete step by step iteration. – Rohit Jain Nov 9 '12 at 16:28