vote up 22 vote down star
26
show 1 more comment

43 Answers

1 2 next
vote up 56 vote down

Head First Design patterns I love this book. Always by my side.

link|flag
show 6 more comments
vote up 0 vote down

Design Patterns in Ruby

link|flag
vote up 44 vote down

The classic Gang of Four book:

Design Patterns: Elements of Reusable Object-Oriented Software

It's the defining patterns book -- a classic.

link|flag
show 2 more comments
vote up 4 vote down

I'm a huge fan of "Holub on Patterns: Learning Design Patterns By Looking At Code." It's a fantastic distillation of the Gang of Four book that is easily applicable to daily development tasks.

Unlike some other books on the topic, this book goes over real-world examples and walks you through a series of design decisions that seem sound enough to address the problem, but have absolutely disastrous implications that you might not consider.

The book is primarily Java-oriented, but the concepts still apply regardless of language.

link|flag
vote up 3 vote down

The obligatory Gang of Four: * Design Patterns: Elements of Reusable Object-Oriented Software* (ISBN 0-201-63361-2) by Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides.

link|flag
vote up 0 vote down

The Gang of Four book is always a great reference.

link|flag
vote up 3 vote down

I really liked Refactoring to Patterns for its "before and after" approach to using patterns to solve problems.

link|flag
vote up 0 vote down

Undoutedly 'Head First Design Patterns'. Hey, it got a Jolt award too.

I really liked 'Design Patterns in Ruby' too.

link|flag
vote up 4 vote down

I like the pattern-oriented software architecture (POSA) series.

http://www.amazon.com/Pattern-Oriented-Software-Architecture-System-Patterns/dp/0471958697

link|flag
vote up 4 vote down

My favorites have already been mentioned above. I'll just add in Uncle Bob's Agile Principles Patterns and Practices. Not just about design patterns, but also about design principles.

alt text

Eric Evans' Domain Driven Design is also very good.

alt text

Finally, Pattern Languages of Program Design

link|flag
vote up 0 vote down

Head First Design Patterns. If you want an illustrative book around patterns, you can't go wrong!

link|flag
1  
why not vote up, if you have nothing to actually contribute to this answer? – DevelopingChris Sep 19 '08 at 20:22
vote up 0 vote down

A thought for the day: a design pattern is a solution for a problem your environment is forcing upon you

link|flag
vote up 2 vote down

I'll vote up the Head First Design Patterns book, but I just wanted to add...

This is a wonderful, funny and educative book that made me think about Object Oriented programming in a whole new way.

You can tell it's going to be a good book early one, where a picture of a tiger is accompanied with the caption

This is a tiger, your brain thinks this is important

Between the people that wrote that and Charles Petzold you could interest anyone in programming...

link|flag
vote up 4 vote down

Enterprise Integration Patterns is invaluable for being able to intelligently discuss asynchronous messaging architectures.

Not written by Martin Fowler, but part of his "Signature Series".

link|flag
vote up 0 vote down

Refactoring to Patterns is a good book once you have become familiar with patterns.

link|flag
vote up 1 vote down

Head First Design patterns! I love it explain the concept of the pattern in a visual and funny way that help me understand it a lot better.

link|flag
vote up 0 vote down

This one is more oriented to PHP but it's very good and talks something about design patterns: PHP 5 Objects, Patterns, and Practice by Matt Zandstra

link|flag
vote up 1 vote down

I'm currently reading APPLYING UML AND PATTERNS. Quite a good book for starting to learn about Unified Process and to get an introduction about design patterns.

link|flag
vote up 2 vote down

Head First Design Patterns definately. Really is a well-written way to get one's head into the concepts.

link|flag
vote up 10 vote down

I would recommend Refactoring: Improving The Design Of Existing Code by Martin Fowler, a really pleasant and useful book which has a soothing, reassuring quality. It makes code fold and unfold in front of you as it was the simplest thing in the world, and lets you see the light through the tangled fabric of the thousands of lines of spaghetti code you are struggling with every single day. The refactoring patterns help a lot in understanding anti-patterns and design patterns.

link|flag
show 1 more comment
vote up 0 vote down

I'd have to agree with Head First Design Patterns being the best one to read. It's witty, entertaining and informative. It made learning design patterns fun and easy. The GoF book, of course, is the ur-text, but it was difficult for me to read and easy book for me to put down. So, if you're interested in learning many (but not all) the GoF patterns without the tedium, I'd recommend Head First Design Patterns.


Patterns of Enterprise Application Architecture is another great book on patterns. It's very informative and easier to read than the GoF book, though much more serious than the Head First book.

link|flag
vote up -1 vote down

The K&R C book.

link|flag
2  
I'll bite. I always got the impression that the GoF style "design patterns" were primarily an Object Oriented thing and that C was, err, not. Am I missing something? – reefnet_alex Sep 20 '08 at 15:36
vote up 2 vote down

I recommend reading Christopher Alexander's A Pattern Language: Towns, Buildings, Construction first.

After that, many of the software patterns books mentioned above are fine, but you need to understand that software patterns have to fit the environment well, and cannot just be shoehorned in. Because of this, a book can only go so far. A book can't look at your system and see where the patterns fit to resolve the system of forces made up by the requirements.

The patterns books can only open your eyes and provide examples you may not have thought of - they can't really provide solutions.

link|flag
vote up 0 vote down

It has been a while since I read it but I did like Design Patterns for Object-Oriented Software Development by Wolfgang Pree

link|flag
vote up 1 vote down

Since no one has mentioned it, I'll throw in my lot with Design Patterns in C#. It covers the same patterns as the GoF book, and uses a consistent set of examples. Most of all, though, it has questions at the end of each chapter, and answers in the back. Take these tests seriously, and you'll "get it." (You'll also learn a few surprising nuances about C#.)

link|flag
vote up 2 vote down

C# 3.0 Design Patterns is really good if you're looking for something .NET-related. It's short and to the point, with lots of examples. It also makes use of the new C# 3.0 features and LINQ.

link|flag
vote up 3 vote down

Although it is not exclusively a design pattern book, I would like to recommend Working Efficiently With Legacy Code. An excellent book for trying to make a legacy code base manageable. It is very well written with code examples in C, C++, Java and C#.

link|flag
vote up 1 vote down

This is not a book, but I like it because it available for free on the web.

Bob Tarr's CMSC446 Introduction To Design Patterns.

http://userpages.umbc.edu/~tarr/dp/spr06/cs446.html

Scroll down to "Lecture Notes".

link|flag
vote up 0 vote down

If you are doing programming that involves networking or multithreading, I found Pattern-Oriented Software Architecture Volume 2: Patterns for Concurrent and Networked Objects to be very useful.

Lots of good patterns in there to separate out the tricky asynchronous behaviour of concurrency from the rest of the application logic.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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