vote up 34 vote down star
37

A lot of people seem to agree, that the Singleton pattern has a number of drawbacks and some even suggest to avoid the pattern all together. There's an excellent discussion here. Please direct any comments about the Singleton pattern to that question.

Are there other design patterns, that should be avoided or used with great care?

flag

Good interview question! – luvieere Nov 13 at 23:53

9 Answers

vote up 55 vote down check

Patterns are complex

All design patterns should be used with care. In my opinion you should refactor towards patterns when there is a valid reason to do so instead of implementing a pattern right away. The general problem with using patterns is that they add complexity. Overuse of patterns makes a given application or system cumbersome to further develop and maintain.

Most of the time, there is a simple solution, and you won't need to apply any specific pattern. A good rule of thumb is to use a pattern whenever pieces of code tend to be replaced or need to be changed often and be prepared to take on the caveat of complex code when using a pattern.

Remember that your goal should be simplicity and employ a pattern if you see a practical need to support change in your code.

Principles over patterns

It may seem like a moot to use patterns if they can evidently lead to over-engineered and complex solutions. However it is instead much more interesting for a programmer to read up on design techniques and principles that lay the foundation for most of the patterns. In fact one of my favorite books about on design patterns topic stresses this by reiterating on what principles are applicable on the pattern in question. They are simple enough to be useful than patterns in terms of relevance. Some of the principles are general enough to encompass more than object oriented programming (OOP), such as Liskov Substitution Principle, as long as you can build modules of your code.

There are a multitude of design principles but those described in the first chapter of GoF book are quite useful to start with.

  • Program to an 'interface', not an 'implementation'. (Gang of Four 1995:18)
  • Favor 'object composition' over 'class inheritance'. (Gang of Four 1995:20)

Let those sink in on you for a while. It should be noted that when GoF was written an interface means anything that is an abstraction (which also means super classes), not to be confused with the interface as a type in Java or C#. The second point principle comes from the observed overuse of inheritance which is sadly still common today.

From there you can read up on SOLID principles which was made known by Robert Cecil Martin (aka. Uncle Bob). Scott Hanselman interviewed Uncle Bob in a podcast about these principles:

  • Single Responsibility Principle
  • Open Closed Principle
  • Liskov Substitution Principle
  • Interface Segregation Principle
  • Dependency Inversion Principle

These principles are a good start to read up on and discussed together with your peers. You may find the principles to interweave with each other and other processes such as seperation of concerns and dependency injection. After doing TDD for a while you also may find that these principles come naturally in practice as you need to follow them to some degree in order to create isolated and repeatable unit tests.

link|flag
2  
+1 Very good answer. It seems that every (newbie) programmer today knows his/her design patterns or at least know they exist. But very many never heard of, let alone apply, some of the absolutely essential principles like Single Responsibility to manage the complexity of their code. – eljenso Jan 16 '09 at 8:12
vote up 10 vote down

The one that the authors of Design Patterns themselves most worried about was the "Visitor" pattern.

It's a "necessary evil" - but is often over used and the need for it often reveals a more fundamental flaw in your design.

An alternative name for the "Visitor" pattern is "Multi-dispatch", because the Visitor pattern is what you end up with when you wish to use a single-type dispatch OO language to select the code to use based on the type of two (or more) different objects.

The classic example being that you have the intersection between two shapes, but there's an even simpler case that's often overlooked: comparing the equality of two heterogeneous objects.

Anyway, often you end up with something like this:

interface IShape
{
    double intersectWith(Triangle t);
    double intersectWith(Rectangle r);
    double intersectWith(Circle c);
}

The problem with this is that you have coupled together all of your implementations of "IShape". You've implied that whenever you wish to add a new shape to the hierarchy you will need to change all the other "Shape" implementations too.

Sometimes, this is the correct minimal design - but think it through. Does your design really mandate that you need to dispatch on two types? Are you willing to write each of the combinatorial explosion of multi-methods?

Often, by introducing another concept you can reduce the number of combinations that you're actually going to have to write:

interface IShape
{
    Area getArea();
}

class Area
{
    public double intersectWith(Area otherArea);
    ...
}

Of course, it depends - sometimes you really do need to write code to handle all of those different cases - but it's worth taking pause and having a think before taking the plunge and using Visitor. It might save you a lot of pain later on.

link|flag
Speaking about visitors, Uncle Bob uses it "all the time" butunclebob.com/ArticleS.UncleBob.IuseVisitor/… – Spoike Oct 24 at 8:11
vote up 8 vote down

Singletons - a class using singleton X has a dependency on it that's hard to see and hard to isolate for testing.

They're used very often because they're convenient and easy to understand, but they can really complicate testing.

See Singletons are Pathological Liars.

link|flag
They can also simplyfy testing as they can give you a single point to inject a Mock object. It is all down to getting balance right. – Martin Brown Jan 16 '09 at 14:32
@Martin: If course it's possible to change a singelton for testing (if you don't use the standard singelton implementation), but how is that easier than passing the test implementation in the constructor? – orip Jan 17 '09 at 8:27
vote up 7 vote down

I believe the Template Method pattern generally is a very dangerous pattern.

  • A lot of times it uses up your inheritance hierarchy for "the wrong reasons".
  • Base classes have a tendency to become littered with all sorts of unerelated code.
  • It forces you to lock down design, often quite early in the development process. (Premature lock down in a lot of cases)
  • Changing this at a later stage becomes just harder and harder.
link|flag
I would add that whenever you use Template Method you're probably better of using Strategy. The problem with TemplateMethod is that there is reentrancy between the base class and the derived class, which is often overly coupled. – Paul Hollingsworth Jan 16 '09 at 10:06
vote up 7 vote down

I think that Active Record is an overused pattern that encourages mixing business logic with the persistance code. It doesn't do a very good job of hiding the storage implementation from the model layer and ties the models to a database. There are plenty of alternatives (described in PoEAA) such as Table Data Gateway, Row Data Gateway and Data Mapper which often provide a better solution and certainly help to provide a better abstraction to storage. Also, your model should not need to be stored in a database; what about storing them as XML or accessing them using web services? How easy would it be to change the storage mechanism of your models?

That said, Active Record is not always bad and is perfect for simpler applications where the other options would be overkill.

link|flag
Kinda true, but dependent to some extent on the implementation. – Mike Woodhouse Jan 16 '09 at 8:55
vote up 6 vote down

I don't think you should avoid Design Patterns (DP), and I don't think you should force yourself to use DPs when planning your architecture. We should only use DPs when they natural emerge from our planning.

If we define from the start that we want to use a given DP, many of our future design decisions will be influence by that choice, with no guarantee that the DP we chose is suited for our needs.

One thing we also shouldn't do is treat a DP as an immutable entity, we should adapt the pattern to our needs.

So, sumarizing, I don't think we should avoid DPs, we should embrace them when they are already taking shape in our architecture.

link|flag
vote up 2 vote down

A complement to Spoike's post, Refactoring to Patterns is a good read.

link|flag
I've actually linked to the book's catalog on the Internet. :) – Spoike Jan 16 '09 at 7:43
Oh! I didn't bother to hover it. Actually, right after finishing the question this book came into my mind, and then I saw your answer. I couldn't stop myself to post it. :) – Vinegar Jan 16 '09 at 7:57
vote up 2 vote down

I hope I won't get beaten too much for this. Christer Ericsson wrote two articles (one, two) on the topic of design patterns in his real time collision detection blog. His tone is rather harsh, and perhaps a bit provocative, but the man knows his stuff, so I wouldn't dismiss it as ravings of a lunatic.

link|flag
Interesting reads. Thanks for the links! – Bombe Jan 16 '09 at 10:16
Morons produce bad code. Do morons with patterns produce worse code than morons that have never seen patterns? I don't think they do. For smart people, patterns provide a well-known vocabulary, which eases the exchange of ideas. The solution: Learn patterns and only deal with smart programmers. – Martin Brown Jan 16 '09 at 15:13
I don't think it is really possible for a true moron to produce worse code - no matter what tool they are using – 1800 INFORMATION Jan 17 '09 at 9:47
vote up 1 vote down

I believe the observer pattern has a lot to answer for, it works in very general cases, but as systems become more complex it becomes a nightmare, needing OnBefore(), OnAfter() notifications, and often posting of asynchronous tasks to avoid re-entrancy. A much better solution is to develop a system of automatic dependency analysis that instruments all object accesses (with read-barriers) during calculations and automatically creates an edge in a dependency graph.

link|flag
1  
I understood everything in your answer up until the word "A" – 1800 INFORMATION Jan 16 '09 at 7:15
You may need to expand or link to this automatic dependency analysis that you talk about. Also in .NET delegates/events are used instead of the observer pattern. – Spoike Jan 16 '09 at 7:35
@Spoike: delegates/events are an implementation of the observer pattern – orip Jan 16 '09 at 8:32
My personal grudge against Observer is that it can create memory leaks in garbage collected languages. When you have finished with an object you need to remember the object won't get cleaned up. – Martin Brown Jan 16 '09 at 14:40
@orip: yes, that's why you use delegates/events. ;) – Spoike Oct 24 at 8:05
show 1 more comment

Your Answer

Get an OpenID
or

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