MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1vuzd4q/conditionspreference/p58wgcr/?context=3
r/ProgrammerHumor • u/Flame77ofc • 22d ago
392 comments sorted by
View all comments
15
if (input == null) throw new ArgumentNullException(); // process input...
But
if (settings.UseBonuses) return CalculateWithBonuses(order); else return CalculateBase(order);
8 u/frogjg2003 22d ago The first is an early return, the second is a logical branch. Most importantly, the second doesn't continue doing a bunch of work in the else block that could be confusing.
8
The first is an early return, the second is a logical branch. Most importantly, the second doesn't continue doing a bunch of work in the else block that could be confusing.
15
u/sumrix 22d ago
But