Do you consider this technique "BAD"? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T15:17:28Zhttp://stackoverflow.com/feeds/question/243967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad10Do you consider this technique "BAD"?Ma99uS2008-10-28T16:34:31Z2008-11-11T15:02:16Z
<p>Sometimes you need to skip execution of part of a method under certain non-critical error conditions. You can use <em>exceptions</em> for that, but exceptions generally are not recommended in normal application logic, only for abnormal situations.</p>
<p>So I do a trick like this:</p>
<pre><code>do
{
bool isGood = true;
.... some code
if(!isGood)
break;
.... some more code
if(!isGood)
break;
.... some more code
} while(false);
..... some other code, which has to be executed.
</code></pre>
<p>I use a "fake" loop which will run once, and I can abort it by <em>break</em> or <em>continue</em>.</p>
<p>Some of my colleagues did not like that, and they called it "bad practice". I personally find that approach pretty slick. But what do you think?</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243972#2439720Answer by EBGreen for Do you consider this technique "BAD"?EBGreen2008-10-28T16:37:59Z2008-10-28T16:37:59Z<p>I think that there is nothing basically wrong with the technique. I think that I would make sure that the bool is named something more descriptive than isGood. Although, now that I look at it, why would it not work to put all the code that is in the loop into a single if(!isGood) block? The loop only executes once. </p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243976#2439763Answer by JesperE for Do you consider this technique "BAD"?JesperE2008-10-28T16:39:00Z2008-10-28T16:39:00Z<p>I have no problem with that as long as the code is readable.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243978#24397828Answer by Paul Tomblin for Do you consider this technique "BAD"?Paul Tomblin2008-10-28T16:39:22Z2008-10-28T16:39:22Z<p>You're pretty much just disguising a "goto" as a fake loop. Whether you like gotos or not, you'd be just as far ahead using a real undisguised goto.</p>
<p>Personally, I'd just write it as</p>
<pre><code>bool isGood = true;
.... some code
if(isGood)
{
.... some more code
}
if(isGood)
{
.... some more code
}
</code></pre>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243980#24398011Answer by Pramod for Do you consider this technique "BAD"?Pramod2008-10-28T16:39:29Z2008-10-28T16:39:29Z<p>You have complicated non-linear control flow inside a difficult to recognize idiom. So, yes, I think this technique is bad. </p>
<p>It might be worthwhile to spend sometime trying to figure out if this can be written a little nicer.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243982#24398222Answer by g. for Do you consider this technique "BAD"?g.2008-10-28T16:40:09Z2008-10-28T16:40:09Z<p>Why use a fake loop? You can do the same thing with a method and it probably won't be considered a "bad practice" as it is more expected.</p>
<pre><code>someMethod()
{
.... some code
if(!isGood)
return;
.... some more code
if(!isGood)
return;
.... some more code
}
</code></pre>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243986#2439861Answer by phjr for Do you consider this technique "BAD"?phjr2008-10-28T16:41:24Z2008-10-28T16:41:24Z<p>It depends on what the alternatives are. <strong>You have to admit that the code you posted is somewhat ugly.</strong> I wouldn't say it's clear. It's a kind of a hack. So if using some other coding solution would be worse, then ok. But if you have better alternative, <strong>don't let the excuse "it's good enough" comfort you.</strong></p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243991#2439918Answer by jonnii for Do you consider this technique "BAD"?jonnii2008-10-28T16:42:36Z2008-10-28T16:42:36Z<pre><code>public bool Method1(){ ... }
public bool Method2(){ ... }
public void DoStuff(){
bool everythingWorked = Method1() && Method2();
... stuff you want executed always ...
}
</code></pre>
<p>The reason why this works is due to something called short circuit logic. Method2 won't be called if Method1 returns false.</p>
<p>This also has the additional benefit that you can break your method into smaller chunks, which will be easier to unit test.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/243996#2439960Answer by Fry for Do you consider this technique "BAD"?Fry2008-10-28T16:43:46Z2008-10-28T16:43:46Z<p>I think I'd have to agree with your colleagues just because of readability, it's not clear atfirst glance what you are trying to accomplish with this code.</p>
<p>Why not just use </p>
<pre><code>if(isGood)
{
...Execute more code
}
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244011#2440114Answer by Aaron for Do you consider this technique "BAD"?Aaron2008-10-28T16:47:44Z2008-10-28T16:47:44Z<p>What you're trying to do is non-local failure recovery. This is what <code>goto</code> is for. Use it. (actually, this is what exception handling is for -- but if you can't use that, 'goto' or 'setjmp/longjmp' are the next best thing).</p>
<p>This pattern, the <code>if(succeeded(..))</code> pattern, and 'goto cleanup', all 3 are semantically and structurally equivalent. Use whichever one is most common in your code project. There's much value in consistency.</p>
<p>I would caution against <code>if(failed(..)) break;</code> on one point in that you're producing a surprising result should you try to nest loops:</p>
<pre><code>do{
bool isGood = true;
.... some code
if(!isGood)
break;
.... some more code
for(....){
if(!isGood)
break; // <-- OOPS, this will exit the 'for' loop, which
// probably isn't what the author intended
.... some more code
}
} while(false);
..... some other code, which has to be executed.
</code></pre>
<p>Neither <code>goto cleanup</code> nor <code>if(succeeded(..))</code> have this surprise, so I'd encourage using one of these two instead.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244013#2440131Answer by Dave Hillier for Do you consider this technique "BAD"?Dave Hillier2008-10-28T16:47:57Z2008-10-28T16:47:57Z<p>Its a very strange idiom. It uses a loop for something its not intended and may cause confusion. I'd imagine this is going to span more than one page, and it would be a surprise to most people that this is never run more than once.</p>
<p>How about using more usual language features like functions?</p>
<pre><code>bool success = someSensibleFunctionName();
if(success)
{
...
}
someCommonCodeInAnotherFunction();
</code></pre>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244016#2440164Answer by Mecki for Do you consider this technique "BAD"?Mecki2008-10-28T16:48:40Z2008-10-28T16:48:40Z<p>Basically you just described goto. I use goto in C all the time. I don't consider it bad, unless you use it to emulate a loop (never ever do that!). My typical usage of goto in C is to emulate exceptions (C has no exceptions):</p>
<pre><code>// Code
if (bad_thing_happened) goto catch;
// More code
if (bad_thing_happened) goto catch;
// Even more code
finally:
// This code is executed in any case
// whether we have an exception or not,
// just like finally statement in other
// languages
return whatever;
catch:
// Code to handle bad error condition
// Make sure code tagged for finally
// is executed in any case
goto finally;
</code></pre>
<p>Except for the fact that catch and finally have opposite order, I fail to see why this code should be BAD just because it uses goto, if a real try/catch/finally code works <strong>exactly</strong> like this and just doesn't use goto. That makes no sense. And thus I fail to see why your code should be tagged as BAD.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244026#2440261Answer by Draemon for Do you consider this technique "BAD"?Draemon2008-10-28T16:52:13Z2008-10-28T16:52:13Z<p>I would consider this bad practice. I think it would be more idiomatic, and generally clearer if you made this a function and changed the breaks to returns.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244035#2440350Answer by Null303 for Do you consider this technique "BAD"?Null3032008-10-28T16:53:57Z2008-10-28T17:06:10Z<p>I don't see why not to use that, but I would do it like this:</p>
<pre><code>#define BEGIN_BLOCK do{
#define SKIP_BLOCK break;
#define END_BLOCK }while(false);
BEGIN_BLOCK
bool isGood = true;
.... some code
if(!isGood)
SKIP_BLOCK
.... some more code
if(!isGood)
SKIP_BLOCK
.... some more code
END_BLOCK
</code></pre>
<p>Of course it has the flaw of not working if SKIP_BLOCK called inside a loop. So probably using a function would be better.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244050#2440501Answer by JohnMcG for Do you consider this technique "BAD"?JohnMcG2008-10-28T17:00:12Z2008-10-28T18:53:16Z<p>If your code is doing something other than the plain meaning of the constructs in place, it's a good sign you've ventured into "cute" territory.</p>
<p>In this case you have a "loop" that will only run once. Any reader of the code will need to do a double-take to figure out what's going on.</p>
<p>If the case where it isn't "good" is truly exceptional, then throwing exceptions would be the better choice.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244052#2440521Answer by widgisoft for Do you consider this technique "BAD"?widgisoft2008-10-28T17:00:23Z2008-10-28T17:00:23Z<p>Split your code into smaller chunks of functional elements - so you could split the above into a function that returns instead of breaking.</p>
<p>I don't know if the above is bad practice but it's readability is a little off and may be confusing to others who might have to maintain the source.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244068#2440680Answer by Ma99uS for Do you consider this technique "BAD"?Ma99uS2008-10-28T17:05:28Z2008-10-28T17:05:28Z<p>If splitting code between <strong>if(!isGood) break;</strong> into separate functions, one can end up with dozens of functions containing of just a couple of lines, so that doers not simplify anything. I could not use <strong>return</strong> because I am not ready to leave the function, there is still stuf I want to do there.
I accept that probably I should just settle for separate <strong>if(isGood) {...}</strong> condition for every code part which I want to execute, but sometimes that would lead to A LOT of curly braces. But I guess I accept that people does not really like that type of construction, so conditions for everything winds!<br> Thanks for your answers. </p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244069#2440691Answer by David Nehme for Do you consider this technique "BAD"?David Nehme2008-10-28T17:05:31Z2008-11-11T14:45:30Z<blockquote>
<p>You can use exceptions for that, but exceptions generally are not recommended in normal application logic, only for abnormal situations.</p>
</blockquote>
<p>Nothing's wrong with using exceptions. Exceptions are part of application logic. The guideline about exceptions is that they should be relatively rare at run time.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244081#2440811Answer by bruceatk for Do you consider this technique "BAD"?bruceatk2008-10-28T17:07:44Z2008-10-28T17:07:44Z<p>To me what you are doing is bad in so many ways. The loop can be replaced by putting that code in a method. </p>
<p>I personally believe that if you have to put a ! in front of your conditions then you are looking for the wrong thing. For readability make your boolean match what you are checking for. You are really checking if there is an error or some bad condition, so I would prefer:
<code><pre>
If (isError)
{
//Do whatever you need to do for the error and
return;
}
</pre></code>
over
<code><pre>
If (!isGood)
{
//Do something
}
</pre></code></p>
<p>So check for what you really want to check for and keep the exception checks to a minimum. Your goal should be readibility over being tricky. Think of the poor soul that is going to have to come along and maintain your code. </p>
<p>One of the first things I worked on 28 years ago was a Fortran program that always needed to check if there was a graphics device available. Someone made the grand decision to call the boolean for this LNOGRAF, so if there was a graphics device available this would be false. I believe it got set this way because of a false efficiency, the check for the device returned zero if there was a graphics device. Throughout the code all the checks were to see if the graphics device was available. It was full of:</p>
<p>If (.NOT. LNOGRAF)</p>
<p>I don't think there was a single:</p>
<p>If (LNOGRAF)</p>
<p>in the program. This was used in mission planning software for B-52's and cruise missiles. It definitely taught me to name my variables for what I'm really checking for.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244121#24412110Answer by Wedge for Do you consider this technique "BAD"?Wedge2008-10-28T17:18:21Z2008-10-28T17:18:21Z<p>This is convoluted and confusing, I would scrap it immediately.</p>
<p>Consider this alternative:</p>
<pre><code>private void DoSomething()
{
// some code
if (some condition)
{
return;
}
// some more code
if (some other condition)
{
return;
}
// yet more code
}
</code></pre>
<p>Also consider breaking up the code above into more than one method.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244127#2441271Answer by Sanjaya R for Do you consider this technique "BAD"?Sanjaya R2008-10-28T17:21:38Z2008-10-28T17:21:38Z<p>I have used this idiom for years. I find it preferable to the similar nested or serial ifs , the "goto onError", or having multiple returns. The above example with the nested loop is something to watch out for. I always add a comment on the "do" to make it clear to anyone new to the idiom. </p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244137#2441371Answer by Phil Nash for Do you consider this technique "BAD"?Phil Nash2008-10-28T17:25:22Z2008-10-28T17:34:23Z<p>What about a functional approach?</p>
<pre><code>
void method1()
{
... some code
if( condition )
method2();
}
void method2()
{
... some more code
if( condition )
method3();
}
void method3()
{
... yet more code
if( condition )
method4();
}
</code></pre>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244139#24413929Answer by paercebal for Do you consider this technique "BAD"?paercebal2008-10-28T17:27:54Z2008-10-28T18:05:35Z<p>Bad practice, it depends.</p>
<p>What I see in this code is a very creative way to write "goto" with less sulphur-smelling keywords.</p>
<p>There are multiple alternatives to this code, which can or can not be better, depending on the situation.</p>
<h2>Your do/while solution</h2>
<p>Your solution is interesting if you have a lot of code, but will evaluate the "exit" of this processing at some limited points:</p>
<pre><code>do
{
bool isError = false ;
/* some code, perhaps setting isError to true */
if(isError) break ;
/* some code, perhaps setting isError to true */
if(isError) break ;
/* some code, perhaps setting isError to true */
}
while(false) ;
// some other code
</code></pre>
<p>The problem is that you can't easily use your "if(isError) break ;" is a loop, because it will only exit the inner loop, not your do/while block.</p>
<p>And of course, if the failure is inside another function, the function must return some kind of error code, and your code must not forget to interpret the error code correctly.</p>
<p>I won't discuss alternatives using ifs or even nested ifs because, after some thinking, I find them inferior solutions than your own for your problem.</p>
<h2>Calling a goto a... goto</h2>
<p>Perhaps you should put clearly on the table the fact you're using a goto, and document the reasons you choose this solution over another.</p>
<p>At least, it will show something could be wrong with the code, and prompt reviewers to validate or invalidate your solution.</p>
<p>You must still open a block, and instead of breaking, use a goto.</p>
<pre><code>{
// etc.
if(/*some failure condition*/) goto MY_EXIT ;
// etc.
while(/* etc.*/)
{
// etc.
for(/* etc.*/)
{
// etc.
if(/*some failure condition*/) goto MY_EXIT ;
// etc.
}
// etc.
if(/*some failure condition*/) goto MY_EXIT ;
// etc.
}
// etc.
}
MY_EXIT:
// some other code
</code></pre>
<p>This way, as you exit the block through the goto, there is no way for you to bypass some object constructor with the goto (which is forbidden by C++).</p>
<p>This problem solves the process exiting from nested loops problem (and using goto to exit nested loops is an example given by B. Stroustrup as a valid use of goto), but it won't solve the fact some functions calls could fail and be ignored (because someone failed to test correctly their return code, if any).</p>
<p>Of course, now, you can exit your process from multiple points, from multiple loop nesting depth, so if it is a problem...</p>
<h2>try/catch</h2>
<p>If the code is not supposed to fail (so, failure is exceptional), or even if the code structure can fail, but is overly complex to exit, then the following approach could be clearer:</p>
<pre><code>try
{
// All your code
// You can throw the moment something fails
// Note that you can call functions, use reccursion,
// have multiple loops, etc. it won't change
// anything: If you want to exit the process,
// then throw a MyExitProcessException exception.
if(/* etc. */)
{
// etc.
while(/* etc.*/)
{
// etc.
for(/* etc.*/)
{
// etc.
if(/*some failure condition*/) throw MyExitProcessException() ;
// etc.
}
// etc.
callSomeFunction() ;
// the function will throw if the condition is met
// so no need to test a return code
// etc.
}
// etc.
}
// etc.
}
catch(const MyExitProcessException & e)
{
// To avoid catching other exceptions, you should
// define a "MyExitProcessException" exception
}
// some other code
</code></pre>
<p>If some condition in the code above, or inside some functions called by the code above, is not met, then throw an exception.</p>
<p>This is somewhat weightier than your do/while solution, but has the same advantages, and can even abort the processing from inside loops or from inside called functions.</p>
<h2>Discussion</h2>
<p>Your need seems to come from the fact you can have a complex process to execute (code, functions calls, loops, etc.), but you want to interrupt it over some condition (probably either failure, or because it succeeded sooner than excepted). If you can rewrite it in a different way, you should do it. But perhaps, there is no other way.</p>
<p>Let's assume that.</p>
<p><strong>If you can code it with a try/catch, do it</strong>: To interrupt a complex piece of code, throwing an exception is the right solution (the fact you can add failure/success info inside your exception object should not be underestimated). You will have a clearer code after that.</p>
<p>Now, if you're in a speed bottleneck, resolving your problem with thrown exceptions as an exit is not the fastest way to do it.</p>
<p>No one can deny your solution is a glorified goto. There won't be a goto-spaghetti code, because the do/while won't let you do that, but it is still a semantic goto. This can be the reasons some could find this code "bad": They smell the goto without finding its keyword clearly.</p>
<p>In this case (and in this performance, profiled-verified) case only, your solution seems Ok, and better than the alternative using if), but of lesser quality (IMHO) than the goto solution which at least, doesn't hide itself behind a false loop.</p>
<h2>Conclusion</h2>
<p>As far as I am concerned, I find your solution creative, but I would stick to the thrown exception solution.</p>
<p>So, in order of preference:</p>
<ol>
<li>Use try/catch</li>
<li>Use goto</li>
<li>Use your do/while loop</li>
<li>Use ifs/nested ifs</li>
</ol>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244167#2441672Answer by Jonathan Leffler for Do you consider this technique "BAD"?Jonathan Leffler2008-10-28T17:46:33Z2008-10-28T17:46:33Z<p>For better or worse, I have used the construct in a few places. The start of it is clearly documented, though:</p>
<pre><code> /* This is a one-cycle loop that simplifies error handling */
do
{
...modestly complex code, including a nested loop...
} while (0);
</code></pre>
<p>This is in C, rather than C++ - so exceptions aren't an option. If I were using C++, I would consider seriously using exceptions to handle exceptions. The repeated test idiom suggested by Jeremy is also reasonable; I have used that more frequently. RAII would help me greatly, too; sadly, C does not support that easily. And using more functions would help. Handling breaks from inside the nested loop is done by repeated test.</p>
<p>I would not classify it as a great style; I would not automatically categorize it as "BAD".</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244170#2441700Answer by mcivilian for Do you consider this technique "BAD"?mcivilian2008-10-28T17:47:41Z2008-10-28T17:47:41Z<p>I think people aren't being honest here.</p>
<p>If I, as your team lead, would see code like this you'd be up for a little one on one, and flagged as a potential problem for the team as that piece of code is particularly horrid.</p>
<p>I say you should listen to your colleagues and rewrite it following any of the suggestions posted here.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244257#2442571Answer by Colin Jensen for Do you consider this technique "BAD"?Colin Jensen2008-10-28T18:12:55Z2008-10-28T18:12:55Z<p>I would say your solution can be the right solution, but it depends. Paul Tomblin has posted an answer that is better (a series of if tubes) ... if it can be used.</p>
<p>Paul's solution cannot be used when there are expensive object initializations along the way through your loop. If the created objects are used in later steps, the do while (0) solution is better.</p>
<p>That said, variable naming should be improved. Additionally, why reuse the "escape" variable so much? Instead trap each individual error condition explicitly and break the loop so that it is obvious what causes the break out at each point.</p>
<p>Someone else suggested using function calls. Again, this may not be an ideal decomposition if it adds unneeded complexity to the function calls due to the number of args that might be passed at any given step.</p>
<p>Others have suggested this is a difficult to understand idiom. Well, first you could put a comment as suggested at the top of the loop. Second, do-while(0) is a normal and common idiom in macros that all C programmers should recognize immediately, so I just don't buy that.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244305#2443050Answer by dongilmore for Do you consider this technique "BAD"?dongilmore2008-10-28T18:24:04Z2008-10-28T18:24:04Z<p>This is what exceptions are for. You can't continue the logic because something went wrong. Even if recovery is trivial, it is still an exception. If you have a really good reason for not using exceptions, such as when you program in a language that does not support them, then use conditional blocks, not loops.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244311#2443110Answer by Paul Tomblin for Do you consider this technique "BAD"?Paul Tomblin2008-10-28T18:25:29Z2008-10-28T18:25:29Z<p>A meta comment:
When you're coding, your goal should be clear, maintainable code first. You should not give up legibility on the altar of efficiency unless you profile and prove that it is necessary and that it actually improves things. Jedi mind tricks should be avoided. Always think that the next guy to maintain your code is a big mean psychopath with your home address. Me, for instance.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244523#2445231Answer by Dean Michael for Do you consider this technique "BAD"?Dean Michael2008-10-28T19:28:58Z2008-10-28T19:28:58Z<p>First, if you just want an answer to whether this code structure or idiom is "bad", I would think it is. However, I think this is a symptom of bad decomposition rather than whether the code you have is "good" or "bad".</p>
<p>I would think much better analysis and refactoring will have to be done to be able to further address the source of the problem, rather than looking just at the code. If you can do something like:</p>
<pre><code>if (condition1(...) && condition2(...) && condition3(...) && ... && conditionN(...)) {
// code that ought to run after all conditions
};
// code that ought to run whether all conditions are met or not
</code></pre>
<p>Then I think it would be more "readable" and more idiomatic. This way, you can make functions like:</p>
<pre><code>bool conditionN(...) {
if (!real_condition) return false;
// code that ought to run
return true;
};
</code></pre>
<p>You get the benefit of better decomposition and help from the compiler to produce the necessary short-circuitry that &&'s will bring. The compiler might even in-line the code in the functions to produce better code than if you would doing the hand-coded loop.</p>
http://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/281125#2811251Answer by jalf for Do you consider this technique "BAD"?jalf2008-11-11T15:02:16Z2008-11-11T15:02:16Z<p>Refactor. The clean solution will in most cases be to split this code out into a smaller helper function, from which you can return, rather than breaking out of your not-actually-a-loop.</p>
<p>Then you can substitute your break's for return's, and now people can immediately make sense of your code when reading it, instead of having to stop and wonder why you made this loop which doesn't actually loop. </p>
<p>Yes, I'd say that simply because it doesn't behave as the reader would expect, it's a bad practice. The principle of least surprise, and so on. When I see a loop, I expect it to loop, and if it doesn't, I have to stop and wonder <em>why</em>.</p>