Post Made Community Wiki by Community
show/hide this revision's text 3 edited body

Side note: Do not impose SESE (Single Entry Single Exit) (i.e. do not forbid more than one return, the use of break/continue/...)

In C++, this is an utupia utopia as throw is another return point. SESE had two advantages in C and exception-less languages:

  • the deterministic release of resources that is now neatly handled by the RAII idiom in C++,
  • making functions easier to maintain, that should not be a concern as the functions must be kept short (as specified by the rule of "one function, one responsibility")
show/hide this revision's text 2 deleted 1 characters in body

Side note: Do not impose SESE (Single Entry Single Exit) (i.e. do not forbid more than one return, the use of break/continue/...)

In C++, this is an utupia as throw is another return point. SESE had two advantages in C and exception-less languages:

  • the deterministic release of resources that is now neatly handled by the RAII idiom in C++,
  • making functions easier to maintain, that should not be a concern as the functions must are be kept short (as specified by the rule of "one function, one responsibility")
show/hide this revision's text 1