vote up 16 vote down star
10

As a relative newcomer to the concept of design patterns, what are some of the most frequently used patterns?

This will help me focus my studies to patterns that may be relevant to the largest number of issues.

flag

21 Answers

vote up 8 vote down check

For studying, I still like the original GoF Design Patterns book. (Some people prefer the more friendly prose books like Head First Design Patterns).

Here's how I've used a few of the patterns lately:

Abstract Factory

Inside our ray tracer, our factory produces one type of objects. Inside our QT-based (graphical) scene editing tool, it produces auxiliary data in another data structure.

Facade

Produced a simple programmatic interface for talking to some of our existing code using unix pipes. (There was an existing interface/protocol for this communication).

Adapter

I wrote some simple wrapper code to take a library in C (for geodetic transforms) and integrate it to our existing C++ code.

Composite

Used in the heart of our ray tracer. Both geometry lists and end types like facetized geometry, solid boxes, solid spheres, etc derive from a Geometry class. A geometry list can hold any Geometry-derived type, including other geometry lists. This reproduces the hierarchy of our scene input files and allows for various memory/speed optimizations.

link|flag
vote up 4 vote down

Inversion Of Control and Dependency Injection. Understand these and used correctly, can start to make your code more maintainable and testable.

link|flag
vote up 3 vote down

These are the big ones I typically use all the time:

  • Abstract Factory Pattern
  • Iterator Pattern
  • Observer Pattern
  • Singleton Pattern
link|flag
vote up 3 vote down

Command Pattern

link|flag
vote up 2 vote down

Just to add another opinion, here's my list:

Factory
Facade
Adapter
Strategy

link|flag
vote up 1 vote down

That said I find decorator to be a useful one because often I want to add optional functionality without modifying the underlying architecture. The factory pattern is another one that crops up all over the place although in a lot of cases it is implicit as opposed to actually being called "factory" that happens to the observer a lot as well.

The one I see the most is definately the one that I shouldn't be used so liberally and that is the Singleton.

link|flag
vote up 1 vote down

I use the Observer pattern quite a bit.

link|flag
vote up 1 vote down

State pattern is a good candidate.

link|flag
vote up 1 vote down

Am I the only one liking the Builder Pattern?

:)

//W

link|flag
No, you are not :o) – Markus Dec 12 '08 at 20:35
vote up 1 vote down

Strategy Pattern

This pattern is useful when I want to minimamize the modification to the existing code upon introducing/changing new features. The use of polymorphism is more maintainable than the use of branching but we have to be careful not to abuse this pattern because of the performance overhead and increased code complication. We must use the pattern at the extention/evolution points where there is absolutely a benefit.

Template Method Pattern

This pattern is useful to implement an application framework to limit the freedom of programmers in order to produce homogeneous code from a bunch of developers. It enforce developers to implement the business logic in the same structure as other developers. It helps making the code more maintainable.

link|flag
vote up 0 vote down

Complementing @Chris answer, the Decorator and Strategy patterns are very useful in most applications too.

link|flag
vote up 0 vote down

Singleton Pattern

(Answering one-per-post to facilitate voting on individual patterns)

link|flag
vote up 0 vote down

In school, I find that strategy design pattern to be useful. It lets me do multiple implementations of a design, and then dynamically change between them at runtime.

It was particularly handy when testing various branch prediction algorithms for my Comp Architecture course.

link|flag
vote up 0 vote down

In C#, the 'Iterator' pattern is implemented in the 'foreach' loop (and other general uses of 'IEnumerable'). So, if you are studying for the purpose of writing ASP.NET applications (assumed from the tag you applied), I would suggest reading the 'IEnumerable' and 'yeild' documentation rather than 'Iterator' pattern information.

Also see Raymond Chen's series on iterators in C#.

link|flag
vote up 0 vote down

These are the big ones I usually use very often:

  • Strategy Pattern
  • Observer Pattern
  • Decorator Pattern
link|flag
vote up 0 vote down

I find myself returning to variants of Factory and Visitor on a regular basis, but the pattern I use most often has no name that I'm aware of. It's probably also a variant of some well known pattern, like Callback or so. It's kind of a poor man's (read: C++ developer) event handler (as in .Net) replacement, for decoupled communication between two objects.

This is basically it's essence, somewhat contrived:

class TrackPlayer;

//
// Callback interface.
//
struct TrackPlayerEventHandler
{
    virtual void OnStarted(TrackPlayer& player) = 0;
    virtual void OnFinished(TrackPlayer& player) = 0;

protected:
    virtual ~ TrackPlayerEventHandler() { }
};

//
// Client.
//
class TrackPlayer
{
public:
    TrackPlayer(TrackPlayerEventHandler& eventHandler)
    : eventHandler_(eventHandler)
    {
    }

    void Play()
    {
        AsyncPlay();
        eventHandler_.OnStarted(*this);
        WaitAndPumpMessagesUntilFinished();
        eventHandler_.OnFinished(*this);
    }

protected:
    TrackPlayerEventHandler& eventHandler_;
};

//
// Host.
//
class Jukebox : private TrackPlayerEventHandler
{
public:
    Jukebox()
    : player_(*this)
    {
    }

    void Play()
    {
        player_.Play();
    }

private:
    //
    // TrackPlayerEventHandler implementations.
    //
    void OnStarted(TrackPlayer&)
    {
        bellsAndWhistles_.Activate();
    }

    void OnFinished(TrackPlayer&)
    {
        bellsAndWhistles_.Deactivate();
    }

    TrackPlayer player_;
    BellsAndWhistles bellsAndWhistles_;
};
link|flag
That's an Observer. – Roger Lipscombe Dec 31 '08 at 11:30
vote up 0 vote down

In C++, on Windows, I often use a combination of the Observer, Proxy and Command patterns for cross-thread marshalling.

Some more detail: In Win32, windows have thread affinity. This means that you shouldn't really call them (via SendMessage) from a different thread than the thread that created the window. SendMessage will block until the UI thread returns, which can (if you're not careful) lead to deadlocks.

So, I generally have the background thread take an Observer interface. I pass it a Proxy implementation of the Observer, which uses PostMessage (usually via a hidden window) to marshal the relevant information to the UI thread. To avoid having to marshal/unmarshal the parameters by hand, I pass Command objects from the background thread to the UI thread (by putting them in the lParam parameter to PostMessage). The Command objects take a C++ pointer-to-member-function parameter, and the list of parameters to that function. Then, when the UI thread calls Execute, they simply call the real Observer.

I wrote this technique up on my website: http://www.differentpla.net/content/2004/06/using-the-observer-proxy-and-command-patterns-to-marshal-progress-reporting-from-a-background-thread

More recently, I've been looking at using a std::tr1::function to package up the parameters. This is, effectively, an implementation of the Command pattern.

link|flag
vote up 0 vote down

in our company we prefer Resign Patterns. I'm joking, obviously. You should read the GOF book and think about design patterns. After that, you should read some criticism to design patterns, as the realtimecollisiondetection blog or futurist programming theory (I'll find some more link and I'll add to this post) and just looking at this contrast you can make an unbiased opinion about them.

link|flag
vote up 0 vote down

Strategy Pattern & Decorator Pattern

link|flag
vote up 0 vote down

The Iterator pattern is a simple, yet powerful way to loop through all kinds of collections. (Arrays, data sets, files... you name it!)

link|flag
vote up 0 vote down

Decorator pattern, and I also use the Visitor pattern quite often. Of course, there are more complex use cases, but a Visitor is handy for many enum types. It becomes even more flexible if you use generics for return value and and exceptions. In most cases, I define an enum (in Java) as:

enum Language {
   ENGLISH { 
       <R, E extends Exception> R accept(Visitor<R,E> visitor) throws E {
           return visitor.visitEnglish(this);
       }
   },
   GERMAN { 
       <R, E extends Exception> R accept(Visitor<R,E> visitor) throws E {
           return visitor.visitGerman(this);
       }
   };
   abstract <R, E extends Exception> R accept(Visitor<R,E> visitor) throws E;

   public static interface Visitor<R,E extends Exception> {
       public R visitEnglish(Language l) throws E;
       public R visitGerman(Language l) throws E;
   }
}
public class GreetingVisitor implements Language.Visitor<String, RuntimeException> {
    public static final GreetingVisitor INSTANCE = new GreetingVisitor();
    public String visitEnglish(Language l) { return "Hello"; }
    public String visitGerman(Language l) { return "Guten Tag"; }

    //Example usage:
    public static String greet(Language language) {
        return language.accept(GreetingVisitor.INSTANCE);
    }
}

That visitor can be used like a switch statement (often as anonymous classes), but with one main difference: if you add support for another language (add it to the enum values, add another visitor method), the compiler finds all visitor implementions where you must add support for your new language. If you used a simple switch statement, you would easily miss one occurence.

link|flag

Your Answer

Get an OpenID
or

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