vote up 8 vote down star
13

I'm interested in understanding what design patterns people find themselves using often. Hopefully this list will help other recognize common scenarios and the associated design pattern that can be used to solve them.

Please describe a common problem you find yourself solving and the design pattern(s) you use to solve it. Links to blogs or documentation describing the pattern are also appreciated.

Edit: Please expand on your answers a bit, I would like this to be a useful reference for someone who wants to learn more about design patterns and is curious on what situations a specific design pattern might be used. Nobody has linked to any "more learning" resources.

flag
For all for those is singleton most used pattern. Please read code.google.com/p/google-singleton-detector/…. – Jakub Šturc Sep 17 '08 at 19:05
3  
This is an exact copy of: stackoverflow.com/questions/49974/… – Joel in Gö Jan 26 at 11:27

27 Answers

vote up 7 vote down

Decorator : to change an object without affecting the original one.

Observer : To have an indetermined object to be fired in some event. (Really like the way C# do it with Event and Deletage).

link|flag
vote up 6 vote down

With design patterns, the trick is that you use a lot of them without even being aware.

As a Microsoft developer, I use the "observer" or "publish/subscribe" patterns a lot just because the tools implement it frequently, with the event/delegate/event handler code generation in Winforms, WPF and ASP.NET.

As far as deliberately applied patterns, MVP is probably the one that I think about and use the most.

link|flag
2  
I agree with you analysis. I think the patter I use the most is 'iterator'. – Kevin Sep 18 '08 at 7:43
1  
MVP is more of an architecture pattern than a design pattern. – Ricket Feb 17 at 20:28
vote up 4 vote down

I find myself using Chain Of Responsibility quite often. It's a good way of decoupling classes and developing flexible systems.

link|flag
nice to know +1 – gpilotino Sep 14 at 17:51
vote up 3 vote down

MVC, by a wide margin. My company is in the process of porting all our business logic to one standard backend and re-writing our applications as lightweight frontends. It takes some planning, but it's worth it when you discover you can make a nice web interface to a fairly complex system in a day or two.

link|flag
vote up 3 vote down

Most of cases singleton is used, it is antipattern (say "Hello" to unit tests)

Factory methods are very useful ;)

link|flag
I couldn't agree more! (first part) At first glance, Singleton seems like an awesome idea... But it breaks fundamental ideas of object-oriented programming and leads to tons of virtual references to the singleton object all over the place, resulting in hard-to-debug code. Yuck! – Ricket Feb 17 at 20:32
vote up 2 vote down

I use Model-View-Presenter and Dependency Injection a lot. More information about MVP can be found here at this link.

link|flag
vote up 2 vote down

Iterator

It isn't the most glamorous design pattern, but it is by far the one I use most often.

link|flag
vote up 1 vote down

Dependency Injection, followed by Humble Dialog.

link|flag
vote up 1 vote down

I find that I use the Decorator pattern quite a bit in protocol-type objects to split the actual protocol level processing from the communications medium that carries the protocol.

For example, I recently used Decorator to split the LPD (Line Printer Daemon) and POP3 (Post Office Protocol, version 3) protocols from the TCP sockets that carried the data, and found that the decoupling made each of the solutions MUCH easier to unit test and develop.

link|flag
vote up 1 vote down

Singleton and Facade tend to find their way into my coding a lot.

Singleton

Singleton has become so possibly overused though that it really isn't a specific pattern anymore.

Facade

Facade has become more useful to me depending on whether or not I am attempting to use multiple external libraries. Very often I find that they are far more complicated than I need and find it easier to program the lightweight interface that either assumes many of the inputs or directives, or even method calls if I do the same process of method calls repeatedly than typing it out in my code a lot. And with modern code inlining, most of the function call overhead is often removed anyways.

I'd say those are the two I use the most at least.

link|flag
vote up 1 vote down

MVC by far.

link|flag
vote up 1 vote down

In my current assignment, template method gets used quite a bit. We tend to use it to guarantee the order that certain methods are executed in, while leaving the implementation of the individual steps to be customized by developers later.

link|flag
1  
I consider template method to be an antipattern, at least if you plan anything like continious improvement/refactoring. – krosenvold Dec 9 '08 at 9:27
vote up 1 vote down

Strategy.

I feel that once you have a clear interface/implementation separation, patterns become almost implicit. To the point that Strategy, Decorator, Factory, Chain of command, ... almost blend into each other.

link|flag
vote up 1 vote down

The Command Pattern gives you great flexibility.

link|flag
vote up 1 vote down

I tend to use Global Variables (erm, Singleton) extensively because I've never been able to find a good place to put my Factories, Abstract Factories, and it also means I can store objects that allow my Observables to register with Observers without needing to pass around objects.

Many applications can be written so that most of your methods actually only have 0-1 parameter this way! Doing this has shortened my unit tests a lot, since there are fewer cases to check (less params, less options). It does take a bit of effort to set up the system so the tests will actually run (vs. lots of NullPointerExceptions...) but that only takes 300-500 lines in a SetUp method.

link|flag
vote up 1 vote down

I'm not really sure whether your question is specific to GOF patterns or regarding all - including Enterprise application related patterns.

There is no silver bullet - It depends on the design problem you are trying to solve, and hence some what related to the domain you are working.

Normally the thought process is like

  • How you identify the entities in your system,
  • How you identify the design problems, and
  • How you apply patterns to address your design specifications.

Again, the frameworks/platforms you use for development may have already implemented patterns as part of their architecture - so you'll be using them anyway.

For me, the most common ones are observer, decorator, singleton, chain of responsibility and facade.

You might want to go through this article on "Applying Design Patterns" - http://amazedsaint.blogspot.com/2009/06/software-design-patterns-for-everyone.html

link|flag
vote up 1 vote down

More important than any pattern is the Gang of Four advice to favor composition over inheritance. What you want is a lot of small, single-responsibility objects that can be composed together in different ways instead of a monolithic class hierarchy. This principle is at the core of most GOF patterns.

A good (if overstated) discussion of inheritance vs. composition is here.

link|flag
vote up 0 vote down

For data access components, as well as logging systems I find myself using the singleton pattern quite freqently

link|flag
Yeah, I've been using singletons a lot at work to avoid creating global variables. – Rodrigo Sep 17 '08 at 22:38
@Rodrigo: I hope you're being sarcastic... – rcreswick Sep 21 '08 at 15:50
vote up 0 vote down

Singleton is my favorite design pattern and MVC pattern is most used one.

link|flag
vote up 0 vote down

MVP and Singleton

link|flag
vote up 0 vote down

Monostate for database connection. Factory for my objects. Strategy for decision making on which object to create

link|flag
vote up 0 vote down
  • MVC pattern because it is inevitable whenever dynamic data is shared in an application.
  • Facade pattern because it makes complicated things easier to someone using your code (and yourself).
  • Singleton pattern for all elements in an application that can't be shared.

And probably several others which I simply implement without realizing that I'm just using a pattern.

link|flag
vote up 0 vote down

Strategy. Because I have several spec change requests per week. Gah!

link|flag
vote up 0 vote down

Factory Pattern - Always program against an Interface :-)

link|flag
vote up 0 vote down

Visitor

In private: I always like to travel to new places.

In code: To separate algorithms from the object structure upon which it operates.

Observer

In private: I like to see new stuff.

In code: For automatic notifications, and loose connection between objects.

link|flag
vote up 0 vote down

During my experience of programming server-side components I have the following patterns to be useful:

1] Factory Patterns - They are great for seperating the creation logic from the usage of the object itself. Especially useful when creation of objects requires passing thro' complex and common object-creation logic and authentication rules

2] Singleton - Almost all projects required this one to be used. The common components that required this were the Logger, the ErrorHandler, the BusinessBroker etc.

link|flag
vote up 0 vote down

Without fail, the Decorator pattern. I'm not sure why but it always seems to come up as a need in my architectures. Of course, Repository designs and most recently the MVC approach have become significant in my development paradigm, but Decorator is one that always seems to be needed.

link|flag

Your Answer

Get an OpenID
or

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