Jumping out of a heavily-nested looping noy by using "goto" statement?
-
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
-
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
Alex Ngai wrote: goto statement is evil, It is not evil to use a
goto
statement when it transfers control to the end of the containing block. The C language even supplies you a couple of built-in constructs to make this easy to do -continue
andbreak
, the latter being nothing more than acontinue
followed by a loop terminator. If you can't get yourself to use agoto
for fear that someone will throw things at you in a code review (because they "learned in school that agoto
is bad, bad, very bad"), you could insteadthrow
an exception when you want to break out of a nested block, and take appropriate action in thecatch
. Whatever you do, be sure to write a nice comment explaining what you've done. The person who ends up maintaining your code (usually yourself) will thank you for this while debugging at 3am on a winter's night. :) /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.com -
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
Just use a goto. You could use a meaningless throw with a catch at the point you want to jump to, but why do that? The end result is the same, and even less clear because there's not really an exception happening. If someone bitches at you for the goto, ask them for better suggestions. --Mike-- Personal stuff:: Ericahist | Homepage Shareware stuff:: 1ClickPicGrabber | RightClick-Encrypt CP stuff:: CP SearchBar v2.0.2 | C++ Forum FAQ ---- Come quietly or there will be... trouble.
-
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
I would advice against using exceptions for application flow, I've seen this mismanaged far too many times. 'goto's are not evil, programmers are :-), but in addition to different ways of breaking, you might want to revise your heavily nested loop and see if you can simplify it.
-
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
Alex Ngai wrote: heavily-nested loop You should attempt to restructure your code. Heavily nested statements (more than 3 levels deep), are not good programming practice! So, I suggest, that while "goto" is fine to use in your case (remember, everything has its value), but I strongly suggest your restructure your loops! cheers! Bikram Singh
-
Alex Ngai wrote: goto statement is evil, It is not evil to use a
goto
statement when it transfers control to the end of the containing block. The C language even supplies you a couple of built-in constructs to make this easy to do -continue
andbreak
, the latter being nothing more than acontinue
followed by a loop terminator. If you can't get yourself to use agoto
for fear that someone will throw things at you in a code review (because they "learned in school that agoto
is bad, bad, very bad"), you could insteadthrow
an exception when you want to break out of a nested block, and take appropriate action in thecatch
. Whatever you do, be sure to write a nice comment explaining what you've done. The person who ends up maintaining your code (usually yourself) will thank you for this while debugging at 3am on a winter's night. :) /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.comI recently saw a horrible code structure (thankfully that I didn't have to maintain) that looked like:
while ( TRUE )
{
/* actions */if ( condition1 )
{
/* actions */
break;
}/* actions */
if ( condition2 )
{
break;
}/* actions */
break;
}Note the
break
at the bottom of the while block. That's right: thewhile
block isn't actually a loop at all - it's simply a device to getbreak
to skip to the bottom of the block. I'M NOT RECOMMENDING THIS. I think it's a horrible practice. It took me a good two hours to actually realise that it was, in fact, a goto. When Dijkstra originally wrote his 'goto considered harmful' paper, he was pointing out the benefits of block control structures for those programmers using languages without them, or die-hard programmers not using those structures in the new languages. Uncontrolled, poorly-designed use of gotos is simply confusing - it's hard for a maintainer to know what's going on - but so is the misuse of any control structure. I don't recommend misusing exceptions in the way you suggest, either. For more, see Gotos Considered Harmful and Other Programmers' Taboos[^]. Stability. What an interesting concept. -- Chris Maunder -
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
Just use
goto
and if some dumbass starts asking questions, just quote Stroustrup (TC++PL 3rd ed).
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
-
I recently saw a horrible code structure (thankfully that I didn't have to maintain) that looked like:
while ( TRUE )
{
/* actions */if ( condition1 )
{
/* actions */
break;
}/* actions */
if ( condition2 )
{
break;
}/* actions */
break;
}Note the
break
at the bottom of the while block. That's right: thewhile
block isn't actually a loop at all - it's simply a device to getbreak
to skip to the bottom of the block. I'M NOT RECOMMENDING THIS. I think it's a horrible practice. It took me a good two hours to actually realise that it was, in fact, a goto. When Dijkstra originally wrote his 'goto considered harmful' paper, he was pointing out the benefits of block control structures for those programmers using languages without them, or die-hard programmers not using those structures in the new languages. Uncontrolled, poorly-designed use of gotos is simply confusing - it's hard for a maintainer to know what's going on - but so is the misuse of any control structure. I don't recommend misusing exceptions in the way you suggest, either. For more, see Gotos Considered Harmful and Other Programmers' Taboos[^]. Stability. What an interesting concept. -- Chris Maunder -
Alex Ngai wrote: heavily-nested loop You should attempt to restructure your code. Heavily nested statements (more than 3 levels deep), are not good programming practice! So, I suggest, that while "goto" is fine to use in your case (remember, everything has its value), but I strongly suggest your restructure your loops! cheers! Bikram Singh
bikram singh wrote: Heavily nested statements (more than 3 levels deep), are not good programming practice! I agree. But they're also (unfortunately) very common. Kevin
-
I recently saw a horrible code structure (thankfully that I didn't have to maintain) that looked like:
while ( TRUE )
{
/* actions */if ( condition1 )
{
/* actions */
break;
}/* actions */
if ( condition2 )
{
break;
}/* actions */
break;
}Note the
break
at the bottom of the while block. That's right: thewhile
block isn't actually a loop at all - it's simply a device to getbreak
to skip to the bottom of the block. I'M NOT RECOMMENDING THIS. I think it's a horrible practice. It took me a good two hours to actually realise that it was, in fact, a goto. When Dijkstra originally wrote his 'goto considered harmful' paper, he was pointing out the benefits of block control structures for those programmers using languages without them, or die-hard programmers not using those structures in the new languages. Uncontrolled, poorly-designed use of gotos is simply confusing - it's hard for a maintainer to know what's going on - but so is the misuse of any control structure. I don't recommend misusing exceptions in the way you suggest, either. For more, see Gotos Considered Harmful and Other Programmers' Taboos[^]. Stability. What an interesting concept. -- Chris MaunderMike Dimmick wrote: horrible code structure Yikes! Three nested
if-else
s would have sufficed, since that it in fact the programmer's intent. Mike Dimmick wrote: I don't recommend misusing exceptions in the way you suggest, either. Neither do I, as I'm sure you'd surmise if you re-read the "if" preceding the "suggestion". :) /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.com -
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
Alex Ngai wrote: and it will easily destory a program's structure, and Alex Ngai wrote: a heavily-nested loop So you want to protect the structure of your heavily nested loop code? Isn't that a bit of an oxymoron? If you are actually concerned with program structure you might consider refactoring the code into a modern object oriented design that utilizes known patterns and techniques to solve simple structure problems like nested loops and 500 line if/elseif/switch statements. But, that's just my opinion... I could be wrong.
Hate is not a family value
-pete
-
Alex Ngai wrote: and it will easily destory a program's structure, and Alex Ngai wrote: a heavily-nested loop So you want to protect the structure of your heavily nested loop code? Isn't that a bit of an oxymoron? If you are actually concerned with program structure you might consider refactoring the code into a modern object oriented design that utilizes known patterns and techniques to solve simple structure problems like nested loops and 500 line if/elseif/switch statements. But, that's just my opinion... I could be wrong.
Hate is not a family value
-pete
Thanks for all you guys's replies, Unfortunately, at least 3-nested loop is a common practice:
while( ) { for( ; ; ){ for( ; ; ){ } } }
Java does not have goto statement at all, but in order to jump out of a several-nested loop, Java has a smart extended break statement, it works like this:first:{ second:{ third:{ System.out.println("Before break."); if(condition) break second; System.out.println("This won't execute."); } } System.out.println("after second block."); }
As we see, it does the job of breaking out of a loop, and it won't have the problem of goto statment which will easily destroy a program's structure. Jave really is a great language, if only it was a system language like C/C++. ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented". -
Thanks for all you guys's replies, Unfortunately, at least 3-nested loop is a common practice:
while( ) { for( ; ; ){ for( ; ; ){ } } }
Java does not have goto statement at all, but in order to jump out of a several-nested loop, Java has a smart extended break statement, it works like this:first:{ second:{ third:{ System.out.println("Before break."); if(condition) break second; System.out.println("This won't execute."); } } System.out.println("after second block."); }
As we see, it does the job of breaking out of a loop, and it won't have the problem of goto statment which will easily destroy a program's structure. Jave really is a great language, if only it was a system language like C/C++. ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented". -
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
At first: my expirience is, if it is going to get too complex, there ist some going wrong. Try to make subfunctions.:suss: A good way to leave loops is to leave the whole funktion with "return" + exitcode. Another option ist to use a central boolean which in every loop is checked.:~ Try this @ home. (B&B)
-
At first: my expirience is, if it is going to get too complex, there ist some going wrong. Try to make subfunctions.:suss: A good way to leave loops is to leave the whole funktion with "return" + exitcode. Another option ist to use a central boolean which in every loop is checked.:~ Try this @ home. (B&B)
Well, the return statement only return back to the function calling point, that's breaking out of a function, not breaking out of a nested-loop. The second option seems interesting, would you explain it a little more? I'm interested. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
-
Just use
goto
and if some dumbass starts asking questions, just quote Stroustrup (TC++PL 3rd ed).
My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
Nemanja Trifunovic wrote: just quote Stroustrup (TC++PL 3rd ed). For those of us that do not have this book, would you please provide the relevant quote?
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen
-
Nemanja Trifunovic wrote: just quote Stroustrup (TC++PL 3rd ed). For those of us that do not have this book, would you please provide the relevant quote?
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen
If you don't have it, you really should... Still there are those who can't afford it (yet...). This is from the special edition, which should be identical to the 3rd edition except most of the errata is corrected. (I used snip where I cut some text that is interesting, but doesn't apply here) I copied this by hand, so mistakes are mine. Page 137: The goto has few uses in general high-level programing, (snip) The goto can also be important in the rare save in which optimal efficiency is essential, (snip) (snip a couple paragraphs) One of the few sensible uses of goto in ordinary code is to break out from a nested loop or switch statement. There you have it: Most of the time goto should not be used. However there are exceptions to that rule, where goto makes the code more readable, or where there is critical speed problem that can be corrected by goto, use it. Remember when applying the latter that the premature application of optimization is evil! Only do so when you can't get a better algorithm or CPU, and a profiler reveales that this area is a problem. Goto will only at best save a few cycles from your loop, so it rarely is enough of a solution to help speed problems. Sometimes embedded systems run into those cases where it matters.
-
Thanks for all you guys's replies, Unfortunately, at least 3-nested loop is a common practice:
while( ) { for( ; ; ){ for( ; ; ){ } } }
Java does not have goto statement at all, but in order to jump out of a several-nested loop, Java has a smart extended break statement, it works like this:first:{ second:{ third:{ System.out.println("Before break."); if(condition) break second; System.out.println("This won't execute."); } } System.out.println("after second block."); }
As we see, it does the job of breaking out of a loop, and it won't have the problem of goto statment which will easily destroy a program's structure. Jave really is a great language, if only it was a system language like C/C++. ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".Seems to me, Java's "smart extended break statement" is nothing but a goto in disguise! A disguised goto is worse than if it was naked! :D Bikram Singh
-
bikram singh wrote: Heavily nested statements (more than 3 levels deep), are not good programming practice! I agree. But they're also (unfortunately) very common. Kevin
You're right there. But as KarstenK said, deep nesting is an indication that the code is too complex. There are very few loops out there that cant be broken down... sure you may need to use functions to accomplish it sometimes, but the cleaner code is well worth that effort. Bikram Singh
-
Is there a way to jump of out a heavily-nested loop not by using goto statement? Since most people would agree that goto statement is evil, and it will easily destory a program's structure, so, I want to stay away from it. However, to my surprise, there is really no easy and effective way to jump out of a heavily-nested loop not by using it. Well, I thought I should consult those experts on codeproject.com, so I could learn from them -- you. Thanks ----------------------------- C++ without virtual functions is not OO. Programming with classes but without dynamic binding is called "object based", but not "object oriented".
Ravi Bhavnani wrote: If you can't get yourself to use a
goto
... you could insteadthrow
an exception I disagree. Ifgoto
is evil thenthrow
ing an exception just to avoid using agoto
is even worse! Which one is clearer to the person maintaining the code? Which one are you more likely to get wrong? Sometimes agoto
is the right way to do something so long as it's well commented and isn't abused.