Comment on C++ Exceptions: Under the Hood (2013)parentComments−grandinj5yI guess people's experiences are different :-)I find exceptions to be a perfectly fine error handling mechanism.I certainly prefer it to cluttering my code with explicit checks for return codes and such like.−dnautics5yreturning errors doesn't have to have cluttered code. Just because Go messed it up doesn't mean it's bad.
Comments
I guess people's experiences are different :-)
I find exceptions to be a perfectly fine error handling mechanism.
I certainly prefer it to cluttering my code with explicit checks for return codes and such like.
returning errors doesn't have to have cluttered code. Just because Go messed it up doesn't mean it's bad.