Is it proper to use the break function to exit several nested for loops? If so, how would you go about doing this? Can you also control how many loops the break exits?
|
|
||||
|
|
|
AFAIK, C++ doesn't support naming loops, like Java and other languages do. You can use a goto, or create a flag value that you use. At the end of each loop check the flag value. If it is set to true, then you can break out of that iteration. |
|||||||||||||||||||||
|
|
No, don't spoil it with a |
|||||||||
|
|
Another approach to breaking out of a nested loop is to factor out both loops into a separate function, and Of course, this brings up the other argument of whether you should ever explicitly |
|||||||||||||||||||
|
|
break will exit only the innermost loop containing it. You can use goto to break out of any number of loops. Of course goto is often Considered Harmful.
Using break and goto can make it more difficult to reason about the correctness of a program. See here for a discussion on this: Why Dijkstra suggested Premature-Loop-Exit Prohibition. |
|||||||||||||
|
|
Although this answear was already presented, i think a good approach is to do the following:
|
|||
|
|
|
How about this?
|
|||
|
|
You can use try...catch.
If you have to break out of several loops at once, it is often an exception anyways. |
|||
|
|
from msdn. |
|||
|
|
|
Breaking out of a for-loop is a little strange to me, since the semantics of a for-loop typically indicate that it will execute a specified number of times. However, it's not bad in all cases; if you're searching for something in a collection and want to break after you find it, it's useful. Breaking out of nested loops, however, isn't possible in C++; it is in other languages through the use of a labeled break. You can use a label and a goto, but that might give you heartburn at night..? Seems like the best option though. |
|||||
|
|
Other languages such as PHP accept a parameter for break (i.e. break 2;) to specify the amount of nested loop levels you want to break out of, C++ however doesn't. You will have to work it out by using a boolean that you set to false prior to the loop, set to true in the loop if you want to break, plus a conditional break after the nested loop, checking if the boolean was set to true and break if yes. |
|||
|
|
|
I use matlab .. this code works using multi "break"
|
|||||||
|