vote up 5 vote down star
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?

flag

My background is in C#. – Ali Feb 22 at 0:32
I love how most people link to Amazon.com. It makes it easy for me to add books to my wishlist. :-) – Bill Karwin Feb 22 at 2:13

19 Answers

vote up 7 vote down check

Both of these are excellent:

Head First Design Patterns

Head First Object-Oriented Analysis and Design

link|flag
I agree, but think you posted the same link for both books. – Jim Anderson Feb 22 at 0:20
Which one should I start reading first? – Ali Feb 22 at 0:31
1  
@Ali - Head First Object-Oriented Analysis and Design – Mitch Wheat Feb 22 at 1:04
1  
The Head First... books are supposed to be great but I could not stand the style. I'd buy one of them and see if you like the style first. – Garry Shutler Apr 27 at 20:17
I'd suggest skimming one at a bookstore or library first and see if the style works for you as the books aren't for everyone. – JB King Nov 10 at 18:14
vote up 1 vote down

If you understand the following 4 principals, you probably have a good handle of OO design:

  1. Encapsulation - The ability to take a problemspace and wrap it up into an object that can contain/maintain its own state and provide a public interface for usage.

  2. Abstraction - The ability to generalize about a set of related objects. For instance, a Truck and a Car are both types of Automobile.

  3. Reification - The ability to create concrete objects from abstractions (ie. the opposite of Abstraction). Think of sorting algorithms; the algorithms can be contained within objects (Bubblesort, Qsort, etc), and those objects can be interchanged within other objects that require sorting (e.g. A Spreadsheet could contain an abstract instance of a Sort object, which would be implemented by Bubblesort, Qsort, etc.).

  4. Substitution - The ability to substitute one similar object for another.

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.

link|flag
vote up 1 vote down

Two books by Robert Martin are a great starting point:

  1. Clean Code
  2. Agile Principles, Patterns, and Practices

I'd also recommend

  • Designing Object-Oriented Software (Wirfs-Brock, et. al.)
link|flag
vote up -1 vote down

Check out my list of good recently published books related to .NET development:

http://www.riaguy.com/books/

The best on on this subject is:

Design Patterns: Elements of Reusable Object-Oriented Software

Design Patterns: Elements of Reusable Object-Oriented Software

Also you may want to check this book:

Principles of Object-Oriented Analysis and Design

Principles of Object-Oriented Analysis and Design

link|flag
Why was this downmodded? – RizwanK Nov 10 at 22:56
vote up 0 vote down

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).

link|flag
Thanks for mentioning Common Lisp Object System. It reminded me of The Art of the Metaobject Protocol that is on my shelf for long now and never got to read it. – Ali Feb 22 at 23:40
vote up 0 vote down

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:

The book presents the few essential construction principles underlying the 'Gang-Of-Four' patterns of Erich Gamma et al. A case study illustrates the application of these meta patterns to document software, in particular to pinpoint the variation points of object/component frameworks.

alt text

link|flag
vote up 0 vote down

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 :)

link|flag
I'd counter this with the observation that understanding OO design properly includes awareness of when to use it, and when not to use it. It's the fiend who only has a hammer who thinks everything is a nail. – Bevan Mar 26 at 9:18
vote up 0 vote down

I like

  • Design Patterns Explained, Shalloway & Trott
  • Agile Principles, Patterns, and Practices in C#, Martin
link|flag
vote up 1 vote down

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.)

link|flag
vote up 1 vote down

I like Designing Object-Oriented Software by Wirfs-Brock, Wilkerson and Wiener. It describes responsibility-driven design, which really clicked with me.

Amazon

link|flag
vote up 0 vote down

Another free online book is "Building Skills in OO Design," written by one of StackOverflow's top gurus, S. Lott.

link|flag
vote up 0 vote down

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.

Amazon

Google Books

link|flag
vote up 2 vote down

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.

link|flag
+1 Yeah! Just the introduction opened my eyes w.r.t. OO mindset when I read it! – Bill Karwin Feb 22 at 2:12
vote up 0 vote down

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.

link|flag
vote up 4 vote down

Domain Driven Design

link|flag
Heck yes! A great resource! – RizwanK Nov 10 at 22:57
vote up 5 vote down

Object Thinking by David West

link|flag
Right on. This book, while it does get a little preachy, strikes a good balance between the "what", the "why", and the "how" of object-oriented design. – Tim Lesher Feb 22 at 2:38
vote up 1 vote down

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.

link|flag
vote up 4 vote down

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.

link|flag
vote up 5 vote down

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.

link|flag
That book may well be a classic but honestly it's one of the driest, dullest books I've ever (tried to) read. – cletus Feb 22 at 0:45
Have to agree 100% with Cletus. Very difificult to learn from – Mitch Wheat Feb 22 at 1:05
...despite being the definitive reference work on the subject. Great for people already experienced with OO design – Mitch Wheat Feb 22 at 1:06
Yeah, I agree, it's pretty rough to get through for someone just trying to learn design patterns. I'd start with the Head First Design Patterns. Once you get through that, the GoF book will make much more sense. – Andy White Feb 22 at 1:48
I dunno guys. I guess I just got it. I never had a problem with the book. I thought if imparted things well with it's examples. Maybe I should pick up head first and take a look. Thanks for the info. – Jason Punyon Feb 22 at 2:12
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.