☆ Yσɠƚԋσʂ ☆@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 23 hours agoOOP theory vs practicelemmy.mlimagemessage-square40fedilinkarrow-up1150arrow-down12
arrow-up1148arrow-down1imageOOP theory vs practicelemmy.ml☆ Yσɠƚԋσʂ ☆@lemmy.ml to Programmer Humor@lemmy.mlEnglish · 23 hours agomessage-square40fedilink
minus-squaresbv@sh.itjust.workslinkfedilinkEnglisharrow-up11·20 hours ago I thought those were for only when shit is seriously wrong and execution can’t continue in the current state. That’s how it starts. Nice and simple. Everyone understands. Until some resource was in a bad state and you decide you want to recover from that situation, but you don’t want to refactor all your code. Suddenly, catching exceptions and rerunning seems like a good idea. With that normalized, you wonder what else you can recover from. Then you head down the rabbit hole of recovering from different things at different times with different types of exception. Then it turns into confusing flow control. The whole Result<ReturnValue,Error> thing from Rust is a nice alternative.
That’s how it starts. Nice and simple. Everyone understands.
Until
and you decide you want to recover from that situation, but you don’t want to refactor all your code.
Suddenly, catching exceptions and rerunning seems like a good idea. With that normalized, you wonder what else you can recover from.
Then you head down the rabbit hole of recovering from different things at different times with different types of exception.
Then it turns into confusing flow control.
The whole Result<ReturnValue,Error> thing from Rust is a nice alternative.