show/hide this revision's text 2 grammar/typos

do Do you consider that this technique "BAD"BAD"?

Sometimes you need to skip execution of the part of the a method under sertain certain non-critical error conditions. You can you use exceptions for that, but that exceptions generally are not recomender to be used recommended in normal application logic, only for abnormal situations.

So I do a trick like this:

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.

I use a "fake" loop which will run once, and I can abort it by break or continue.

Some of my colleagues did not like that, and they call called it "bad practice". I personally find that approach preatty pretty slick. But what do you think?

show/hide this revision's text 1

do you consider that technique "BAD"

Sometimes you need to skip execution of the part of the method under sertain non-critical error conditions. You can you exceptions for that but that exceptions generally are not recomender to be used in normal application logic, only for abnormal situations. So do a trick like this:

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.

I use "fake" loop which will run once, and I can abort it by break or continue

Some of my colleagues did not like that, and they call it "bad practice". I personally find that approach preatty slick. But what do you think?