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?
|
|
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?
|
||||||||
|
closed as exact duplicate by Bill the Lizard♦ Dec 12 '08 at 16:59 |
|
|
See this post. I personally use Composition and Decorator very often. |
||
|
|
|
Behaviour pattern as an excellent replacement for inheritance MVC pattern for ASP.NET sites. |
||
|
|
|
|
Singleton all the time when working with services. |
||
|
|
|
|
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. |
||
|
|
|
|
Model View Presenter IRepository |
||
|
|
|
|
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. |
||
|
|
|
|
Singleton. There really is only a few reasons to use it, but the frequency of use is astonishing. |
||
|
|
|
|
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! |
||
|
|
|
|
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. |
||
|
|
|
|
Dependency injection. I write number crunching code, and it's ridiculously useful for generalizing number crunching functions. |
||||||
|