vote up 30 vote down star
33

I'm a confused newbie and hobbyist programmer trying to get a grip on this, so forgive me if my question is a little off or doesn't make much sense.

I see a lot of questions on SO revolving around the use of design patterns, and I'm wondering if anyone has a good resources for learning about, and implementing design patterns? I understand the general idea, and know how/when to use a couple of them(Singletons, Factory methods) but I know I'm missing out.

(Just in case it matters, my language of preference is C# but I could learn from examples in other languages)

flag

24 Answers

vote up 43 vote down

Head First Design Patterns

alt text

and the Design Pattern Wikipedia page are the best resources for beginners. FluffyCat is another good, free online resource, but it's a Java-only reference.

The Gang of Four book is where to go afterwards, but it's fairly advanced, so I'd wait until you have a pretty firm grasp from the other two resources.

link|flag
I second the Head First Design Patterns book. It's great. – Josh Hinman Oct 28 '08 at 20:27
1  
I second your second! – BQ Oct 28 '08 at 20:30
I third your second! – Bob Somers Oct 28 '08 at 20:30
1  
There are C# code examples for Head First Design Patterns available at msquaredweb.com/DesignPatterns/… – toolkit Oct 28 '08 at 20:35
+1 - this helped me – Pace Oct 29 '08 at 8:43
show 6 more comments
vote up 1 vote down

Patterns of Enterprise Application Architecture (Hardcover) by Martin Fowler

Refactoring to Patterns (Hardcover) by Joshua Kerievsky

Continuous Integration: Improving Software Quality and Reducing Risk (Paperback) by Paul Duval et.al.

Beyond Software Architecture: Creating and Sustaining Winning Solutions (Paperback) by Luke Hohmann

link|flag
vote up 12 vote down

I'd add that Design Patterns book from the "Gang of four" is a bible for anyone who is seriously interested in design patterns.

link|flag
Or for anyone who wants to tell their programmer friends that they've read the Gang of Four book :) – Dave Markle Sep 1 at 9:10
vote up 2 vote down

alt text

link|flag
vote up 1 vote down

Design patterns are like any library function, read about them, then when a problem comes up, the design pattern will be in your "Toolchest". There are many design patterns books all patterned after the original "Gang of four" design patters.

For any programmers, I think that and the Refactoring book by Fowler are the absolute minimal requirements.

link|flag
The POSA books were not "patterned after the GOF" book - the GOF happened to be first to be published - they were in production at the same time. – tim Oct 28 '08 at 20:30
Just to avoid any confusion, I want to say that MOST design patterns are NOT implemented in a library. Many patterns are formed by combining library classes together. – Bill the Lizard Oct 28 '08 at 20:30
I did make it sound like they could be done in a library--sorry about that, thanks for the clarification, Bill. Design patterns are generally LIKE libraries but things you can't typically PUT in a library--like different ways that classes unknown to each other interact. – Bill K Oct 29 '08 at 15:58
vote up 0 vote down

It does not make too much sense to me for someone with very little experience to delve too far deeply into design patterns. It is great to know they exist, but at this point you should focus more on other things rather than just learning about design patterns.

They are useful in context of a problem - as a concept for a new/beginner developer they are really not too much practical value aside form knowing that you should make use of them when and where you can.

EDIT To clarify - many design patterns are a result of problems found in some domains. A new programmer can hardly be expected (IMO) to know the design pattern(s) to use for some set of problems. Just as we get a smattering of algorithms in CS studies, we need an understanding of the things we can do with patterns and their benefits, but when a person is still building hello world or discovering stl there is not much practical need for design patterns. Patterns are great. But they are not the silver bullet.

(Neither was CASE (tools), neither is/was UML, neither is SCRUM, neither is TDD, nor STL, nor Java, nor XML, etc. ) These are all just aspects of our profession and to treat these topics as the second coming is naive.

link|flag
But if you don't know about the patterns, you won't know if there's one out there that addresses your particular problem. Yes, as a newbie you are unlikely to NEED a pattern, but it's important to learn the patterns before that need arises. – Elie Oct 28 '08 at 20:31
I think I covered that in my post... – tim Oct 28 '08 at 20:34
You need to have more than just knowing that they exist.... you need to know how they work and the kind of situations where they are used. That's a bit more than superficial knowledge. It may be years before you use a pattern, but when you do, it's not the time to learn the pattern. – Elie Oct 28 '08 at 20:36
So you're saying a newbie has to learn and understand dozens or more of patterns? What comes off the table in the meantime? I am not arguing against patterns. And I also don't think that learning the specifics of a pattern JIT is a bad thing. Learning patterns before other stuff IMO is not useful – tim Oct 28 '08 at 21:12
vote up 1 vote down

For websites, a very good site is http://ajaxpatterns.org, from one of the developers of the ajaxian website

link|flag
vote up 1 vote down

The original Design Patterns book is a must-read for all programmers.

It is an excellent book on every level: layout, clarity, insight, depth. It's one of those great books that you first read cover-to-cover, and then use as a reference until you literally know it inside out.

You could start by the Wikipedia page, but treat yourself with the great book too.

link|flag
vote up 3 vote down

My tip:

Read a lot about the patterns from different sources.

Trying to force as many patterns as possible into all the code you're writing as this point is not going to give good results. Instead, let the information rest inside your brain for a while (read: months).

Suddenly you'll find yourself stumbling upon a problem or piece of code and you'll vaguely remember that you've seen something that might work as a solution to this particular problem. Now is the time to look up the details on the pattern you are thinking of and try to apply it.

That's what has worked for me, anyway.

link|flag
vote up 4 vote down

Bruce Eckel has a book on design patterns, although it's Java, it's like all of his books amazing. And the best thing is, they are free!

link|flag
Thanks for the link, didn't realize that was up for free on-line. – James McMahon Jan 21 at 20:15
vote up 1 vote down

Applying UML and Patterns by Craig Larman. Start from the basic of analysis, design and uses a simple Case scenario. Introduces most of the basic patterns in a simple way.

link|flag
vote up 0 vote down

I also suggest having a shufty at Refactoring to Patterns once you've read Head First Design Patterns.

Note: The code examples are in Java, but should be very similar to C# examples...

link|flag
vote up 5 vote down

C# 3.0 Design Patterns for a C# perspective on design patterns.

alt text

link|flag
vote up 1 vote down

If you read about design patterns you'll notice that Java seems to have a few of them implemented.

Look at the source for any framework and you can glean info about design patterns. Personally I don't see them fitting in perfectly to any of my code, sometimes the examples in books and tutorials seem a little idealized, especially for the lone coder.

Design patterns aren't for lazy coders.

link|flag
vote up 10 vote down

Design patterns are great for various reasons:

  1. gives you a starting for solving common problems.
  2. gives developers a vocabulary to talk about certain ways of solving problems in a very compact manner.
  3. when working with developers who know design patterns and you use design patterns in your solutions they will understand the solutions a lot faster.

But when your goal is just to learn design patterns I think you are missing the fundamentals. All design patterns are based on more common principles. High Cohesion, Low Coupling Open Closed Principle, DRY, Liskov Substitution Principle etc. For these fundamentals I would read the following books in this order:

  1. Head First Object-Oriented Analysis and Design (Head First) [ILLUSTRATED] (Paperback)
  2. Applying UML and Patterns (Hardcover)
  3. Agile Principles, Patterns, and Practices in C# (Robert C. Martin Series) (Hardcover)

After that you are ready for the basic gang of four design patterns

  1. Head First Design Patterns (Head First) [ILLUSTRATED] (Paperback)
  2. The BIBLE
  3. A nice website (don't buy anything, it is not worth it) http://dofactory.com/Patterns/Patterns.aspx (some implementations of this site are worth a discussion

The next step:

  1. Patterns of Enterprise Application Architecture (Addison-Wesley Signature Series) (Hardcover)
  2. The POSA books

And always remember : the pattern is not the goal !

link|flag
I think the fundamentals of OO (encapsulation, inheritance, polymorphism, etc.) are enough to knowledge to start learning design patterns. You can learn the other principles (High Cohesion, Low Coupling Open Closed Principle, DRY, Liskov Substitution Principle, etc.) through learning patterns. – Bill the Lizard Oct 28 '08 at 22:22
I agree you can learn design patterns with only the fundamentals of OO. But then you make it to the point that you can make a pattern work but not yet fully understand why this is good design, what trade-offs you have made and how you can make variations in the patterns. – KeesDijk Oct 29 '08 at 7:07
vote up 0 vote down

Patterns comprise the high level vocabulary programmers use to talk about abstract design. If you are reusing an abstract solution, it is helpful to refer to it by name. If you invent a pattern, it is professional to do a little checking to make sure it hasn't already been given a name. If it has been named, then the description may be useful.

After you code even a tiny bit, you will notice yourself writing something similar to what you coded before. This is a pattern. Even if it is a tiny pattern, it is worth noticing. Is there a better pattern? Do you see certain tiny patterns cooperating together to solve a larger problem? Well next time, when you want to solve larger problem, the entire pattern comes into your mind as a single chunk. Fleshing out the detailed lines of code becomes mechanical.

The more you notice patterns, the easier programming becomes, and the more you will appreciate some of the biggest and best patterns worked out by other programmers. Try mastering the MVC pattern. One way or another, variations show up all over the place, even in tiny design decisions.

link|flag
vote up 1 vote down

An introductory book that I found useful and well written is Design Patterns Explained by Alan Shalloway and James Trott (Addison Wesley).

alt text

Do not start from the Gang of Four book, for it is not an introductory book by any means.

link|flag
vote up 2 vote down

Head First Design Patterns is a good one like others already noted. Besides this, of course the original book and C# Design Patterns. Also there are good websites already mentioned.

Besides self-learning, I seriously recommend starting or attending a pattern study group in your area. See A Learning Guide To Design Patterns for explanation and great order to study the patterns in. We did this and I can honestly say that I would not understand as much as I do now. A weekly meeting with other interested people keeps you surprisingly disciplined when learning something abstract like design patterns.

Happy studies!

link|flag
vote up 3 vote down

I would recommend taking a look at Jean Paul Boodhoo's quintology (?) on Demystifying Design Patterns on DNRtv, urls supplied below. The videocasts touches on Singleton, Abstract Factory among others- the difference being that you can watch him code as he discusses the theory. Good to watch over lunch on a rainy weekday.

http://www.dnrtv.com/default.aspx?showNum=63 http://www.dnrtv.com/default.aspx?showNum=65 http://www.dnrtv.com/default.aspx?showNum=68 http://www.dnrtv.com/default.aspx?showNum=71 http://www.dnrtv.com/default.aspx?showNum=92

link|flag
vote up 1 vote down

For me and my colleagues study Design Pattern that following on Pattern Study Group. They prepare a list of each pattern that we should learn in order and also have the opening questions that make more discussion in group.

link|flag
vote up 0 vote down

Once you understand the concept, go through the Eclipse source code or design, lots of really good examples of these patterns (no surprise, Gamma was one of the designers).

link|flag
vote up 2 vote down

An annotation to the above comments.

A Quick Reference For GOF Patterns

Here is a good place you can start dofactory.com/patterns/patterns.aspx - You can find link to each pattern, along with corresponding implementations.

How ever, remember that these are GOF patterns. You might need to read and understand advanced patterns as well, once you gain enough expertise in OOAD. Head First Design Patterns is a good start, and after making some progress, go with Martin Fowler's Enterprise Application Architecture Patterns.

Applying Design Patterns - The Thought Process

Another main aspect - Applying Design patterns is as important as just knowing them. Reading these articles might help you as well.

Applying Design Patterns Part I

Applying Design Patterns Part II

Hope this helps

link|flag
vote up 0 vote down

I have found Design Pattern articles on this website really easy to understand

Design Patterns in C#

link|flag
vote up 0 vote down

Design Patterns

This tutorial site contains following sub-sections

  • Intent of each design pattern
  • Real World Structure for the design pattern
  • A Problem statement
  • Detailed discussion on the problem
  • Checklist on how to arrive at a pattern
  • Rules of thumb while arriving at pattern.
  • Code snippets for the design pattern which includes C#, C++, Delphi, Java and PHP

This site also contains guide on Anti Patterns and Refactoring.

link|flag

Your Answer

Get an OpenID
or

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