show/hide this revision's text 4 Corrected the goto code to show how it is superior to the if
bool isError = false // etc. if(/*some failure condition*/) goto MY_EXIT ; // etc. while(/* some code, perhaps setting isError to true etc.*/) // etc. for(/* etc.*/) /if(isError/ etc. if(/*some failure condition*/) goto MY_EXIT ; /* some code, perhaps setting isError to true */ if(isErroretc. // etc. if(/*some failure condition*/) goto MY_EXIT ; /* some code, perhaps setting isError to true */ etc. // etc.

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).

Of course, now, you can exit your process from multiple points, from multiple loop nesting depth, so if it is a problem...

show/hide this revision's text 3 Formatting. Code correction. Added a true conclusion.

You

Your do/while solution

bool isOk isError = true false ; /* some code, perhaps setting isOk isError to false true */ if(isOkif(isError) break ; /* some code, perhaps setting isOk isError to false true */ if(isOkif(isError) break ; /* some code, perhaps setting isOk isError to false true */

The problem is that you can't easily use your "if(isOk) if(isError) break ;" is a loop, because it will only exit the inner loop, not your do/while block.

I won't discuss alternatives using ifs or even nested ifs because, after some thinking, I find them inferior solutions to than your own for your problem.

Call

Calling a goto a a... goto

At least, it will show something could be wrong with the code, and prompt reviewer reviewers to validate or invalidate your solution.

bool isOk isError = true false ; /* some code, perhaps setting isOk isError to false true */ if(isOkif(isError) goto MY_EXIT ; /* some code, perhaps setting isOk isError to false true */ if(isOkif(isError) goto MY_EXIT ; /* some code, perhaps setting isOk isError to false true */ if(/* etc.) etc. */) if(/*some failure condition*/) { throw MyExitProcessException() ;

Conclusion

Discussion

In this case (and in this case only, your solution seems Ok, and better than the alternative using if).

But no

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.

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.

Conclusion

So, in order of preference:

  • Use try/catch
  • Use goto
  • Use your do/while loop
  • Use ifs/nested ifs
  • show/hide this revision's text 2 Added a goto section. Added example code in the try/catch section
    if(isOk) break ;

    I won't discuss alternatives using ifs or even nested ifs because, after some thinking, I find them inferior solutions to your own for your problem.

    Call a goto a goto

    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.

    At least, it will show something could be wrong with the code, and prompt reviewer to validate or invalidate your solution.

    You must still open a block, and instead of breaking, use a goto.

    bool isOk = true ; /* some code, perhaps setting isOk to false */ if(isOk) goto MY_EXIT ; /* some code, perhaps setting isOk to false */ if(isOk) goto MY_EXIT ; /* some code, perhaps setting isOk to false */// some other code

    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++).

    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).

    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.
    show/hide this revision's text 1