154
OOP theory vs practice
(lemmy.ml)
Post funny things about programming here! (Or just rant about your favourite programming language.)
You don't want to use exceptions in normal control flow, because they're extremely slow. Every time you
throw
an exception, it has to collect a stacktrace, which is hundreds, if not thousands, of calculations, compared to a handful of calculations for returning a boolean or an enum variant.