I have been programming OO for a while. But now I feel I have reached a place where I need to understand principles and fundamentals of object oriented design and theory scientifically and deeply.
What resource, especially books can you suggest?
|
11
|
I have been programming OO for a while. But now I feel I have reached a place where I need to understand principles and fundamentals of object oriented design and theory scientifically and deeply. What resource, especially books can you suggest?
|
||||
|
|
|
Both of these are excellent: |
||||||||||||||
|
|
|
If you understand the following 4 principals, you probably have a good handle of OO design:
As for books, I second the recommendation of Design Patterns by the Gang of Four (Gamma, Helm, Johnson, Vlissides). This book defines idioms that have evolved through the use of object oriented programming. The examples used are written primarily in C++, with some Smalltalk and other languages, but the concepts are also provided graphically. When reading this book, I suggest using the patterns to help solve a problem. Don't use it as a "cookbook" to start designing your software. Also, it is a fairly old book, so you won't find newer patterns in there. |
||
|
|
|
|
Two books by Robert Martin are a great starting point:
I'd also recommend
|
||
|
|
|
|
Check out my list of good recently published books related to .NET development: The best on on this subject is: Design Patterns: Elements of Reusable Object-Oriented Software
Also you may want to check this book: Principles of Object-Oriented Analysis and Design
|
|||
|
|
|
To understand pure object-orientation's goal of simulating the interaction of actors (objects), study SmallTalk and the Simula dialects. Also check out non-mainstream implementations such as the Common Lisp Object System, including its Meta-Object Protocol. It's also informative to read about modern languages that eschew many aspects of mainstream object-oriented programming, such as the JVM Lisp dialect Clojure (see also Object Oriented Programming section of the page on identity and state). |
||
|
|
|
Another Design Pattern book is Design Patterns for Object-oriented Software Development by Wolfgang Pree. It is a bit leaning to the theory of constructions and distills down to 7 constructions (if I remember correctly), variations of Template-and-Hook patterns. It is rather old and looks a bit hard to find. Abstract:
|
||
|
|
|
|
I dont know about anyone else, but I would be wary of understanding Object Oriented Design Deeply. It can even with the best of intentions lead to over engineered solutions :) |
||
|
|
|
I like
|
||
|
|
|
|
Smalltalk Best Practice Patterns is the best book I know on OO design. Definitely not for Smalltalkers only. (Besides, Simula-67 may have invented objects, but Smalltalk-80 really put them to work. Most later designs, with the honorable exceptions of Self and its friends, are just footnotes to Smalltalk. I include C++ and Ruby in that group, for example.) |
||
|
|
|
|
I like Designing Object-Oriented Software by Wirfs-Brock, Wilkerson and Wiener. It describes responsibility-driven design, which really clicked with me. |
||
|
|
|
|
Another free online book is "Building Skills in OO Design," written by one of StackOverflow's top gurus, S. Lott. |
||
|
|
|
|
If you want a better understanding of the concepts used in object-oriented languages, I can recommend The Interpretation of Object-Oriented Programming Languages by Iain Craig. Just check out its table of contents. |
||
|
|
|
|
I suggest you to consider this one: Applying UML and Patterns: An Introduction to Object-Oriented Analysis and Design and Iterative Development. This is the best book, about OOP, I ever read. |
||
|
|
|
It might be a basic book but I really liked Object Oriented Thought Process by Matt Weisfeld. New edition has examples in C# and references to all other excellent books on OOP. |
||
|
|
|
|
|
||
|
|
|
Object Thinking by David West |
||
|
|
|
For the fundementals you really need to move beyond introductory books. And GoF really assumes an understanding of OO rather than digging into it. Not looked at the (much newer) 3rd edition as I have the 2nd, but "Object Oriented Design with Applications" by Grady Booch et al was the standard. |
|||
|
|
|
|
This isn't an entire book, but I've always liked the first chapter of Thinking in Java or Thinking in C++ by Bruce Eckel. It makes for a wonderful primer or introduction. |
|||
|
|
|
|
Design Patterns: Elements of Reusable Object-Oriented Software - GoF Actually now that I think of it...I think fowler's refactoring also gave me a great appreciation for object oriented design. |
||||||||||
|