1
vote
What books do you suggest for understanding object oriented programming design deeply?
Two books by Robert Martin are a great starting point:
Clean Code
Agile Principles, Patterns, and Practices
I'd also recommend
Designing Object- …
1
vote
How to decide between Composition and Generalization when designing objects and their relationships ?
If we're talking about public inheritance (IS_A), the key is to understand the Liskov Substitution Principle and what it means with respect to inheritance. In particular, it means that the IS-A re …
0
votes
When is OOP better suited for?
Object oriented code and procedural code have different extensibility points. Object oriented solutions make it easier to add new classes without modifying existing functions (see the Open-Closed …
