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.
|
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.
|
||
|
|
|
|
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. |
||
|
|
|
|
Inversion Of Control and Dependency Injection. Understand these and used correctly, can start to make your code more maintainable and testable. |
||
|
|
|
|
These are the big ones I typically use all the time:
|
||
|
|
|
|
Just to add another opinion, here's my list: Factory |
||
|
|
|
|
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. |
||
|
|
|
|
I use the Observer pattern quite a bit. |
||
|
|
|
|
State pattern is a good candidate. |
||
|
|
|
|
|
||
|
|
|
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. |
||
|
|
|
|
Complementing @Chris answer, the Decorator and Strategy patterns are very useful in most applications too. |
||
|
|
|
|
(Answering one-per-post to facilitate voting on individual patterns) |
||
|
|
|
|
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. |
||
|
|
|
|
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#. |
||
|
|
|
|
These are the big ones I usually use very often:
|
||
|
|
|
|
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:
|
||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
The Iterator pattern is a simple, yet powerful way to loop through all kinds of collections. (Arrays, data sets, files... you name it!) |
||
|
|
|
|
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:
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. |
||
|
|