this post was submitted on 30 Jan 2026
155 points (93.3% liked)
Programmer Humor
40389 readers
37 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Abstraction, when used well, is actually a tool that produces more simple code in the long run. It separates different concerns into different pieces of code, and helps readable by extracting common logic and giving it a recognizable name.
That said, OOP-style inheritance-based abstractions, while useful in some cases, quite often lead people down the complete opposite path - mushing together unrelated logic and then making call sites difficult to understand with a lot of hidden state that has to be kept in mind.