vote up 2 vote down star

Closed as Exact Duplicate of this question.

Design patterns are fairly well known in our community and are used across a variety of projects. Which one(s) do you find yourself most commonly using, whether in personal or professional projects?

flag

Sometimes I let duplicate questions slide if there's potential for new and original answers. I don't see that potential here. – Bill the Lizard Dec 12 '08 at 17:01
The 'exact duplicate' is asking for frequently used design patterns. This question is asking specifically what individuals use certain design patterns more often than others and possibly why they do this. – Dalin Seivewright Dec 12 '08 at 17:59
@Dalin: surely that's an unnecessary distinction - in both cases, it's individuals answering the question. – Shog9 Dec 12 '08 at 18:02
Sorry about that. The original didn't show up in the list of similar questions when I first asked this. – Brian Dec 12 '08 at 18:32

closed as exact duplicate by Bill the Lizard Dec 12 '08 at 16:59

10 Answers

vote up 3 vote down check

See this post.

I personally use Composition and Decorator very often.

link|flag
Thanks...that one didn't come up as a similar question when I originally asked. – Brian Dec 12 '08 at 16:45
vote up 2 vote down

Behaviour pattern as an excellent replacement for inheritance

MVC pattern for ASP.NET sites.

link|flag
vote up 1 vote down

Singleton all the time when working with services.

link|flag
vote up 1 vote down

I often use the singleton pattern, probably too much. I use to for things like ensuring I have one connection to the database, one set of application settings, etc.

I use the factory pattern a lot to construct items based on attributes or run time behaviour.

I am also trying to use the MVP pattern more often in WinForms apps.

link|flag
vote up 0 vote down

Model View Presenter

IRepository

link|flag
vote up 0 vote down

Apple has a document on how the Cocoa framework implements common design patterns. It's great for seeing how design patterns work in "real world" programs. All the applications I write for the Mac deal with or subclass elements of nearly all of the patterns listed there.

link|flag
vote up 0 vote down

Singleton. There really is only a few reasons to use it, but the frequency of use is astonishing.

link|flag
vote up 0 vote down

Well, we're all using a pattern every other method and most of us probably don't even think about it.

Let's give a warm round of applause to our friend and benefactor, the Iterator pattern!

link|flag
vote up 0 vote down

Personally I like the Factory/Abstract Factory patterns along with the obvious for anyone doing Java GUI work, observer. Although I do enjoy finding uses for more obscure patterns like Template.

As of recently I have actually been avoiding the Singelton pattern (in java). This is a great blog to read about why that specific pattern as well as others are not really a good choice in some more fully featured languages. I would suggest that everyone who considers themselves an object oriented developer read it.

link|flag
vote up -1 vote down

Dependency injection. I write number crunching code, and it's ridiculously useful for generalizing number crunching functions.

link|flag
Drive-by downing. Why did they do it? We'll never know. – Will Dec 12 '08 at 16:47
Downed by mistake. Corrected. – petr k. Dec 12 '08 at 17:19
Well, -1 after all. I simply do not believe this is the most commonly used design pattern by anyone. There are many more patterns used everyday you're not event aware of using. – petr k. Dec 20 '08 at 4:01

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