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 …
6
votes
What should be on a checklist that would help someone develop good OO software?
One of the best sources would be Martin Fowler's "Refactoring" book which contains a list (and supporting detail) of object oriented code smells that you might want to consider refactoring.
…
