vote up 2 vote down star
2

OK, I'm not looking for anti-patterns - I'm looking for things that aren't really patterns, or perhaps patterns that have been abused.

My personal least favourite is the "Helper" pattern.

E.g. I need to create a SQL query, so call SQLQueryHelper. This needs to process some strings, so it in turn calls StringHelper. Etc., etc.

See - this isn't really a design pattern at all...

[edit] Don't you people who vote this down think you should add a constructive remark?

flag

20% accept rate
Isn't this supposed to be a wiki? – mafutrct Mar 23 at 10:22
You're definitely thinking the right way with this question. – Curt Sampson Jun 7 at 0:06

7 Answers

vote up 14 vote down

Singleton.

It's a global variable in disguise and difficult to mock/stub for unit testing.

Service Locator better, Dependency injection / Inversion of Control better still.

The majority of references on the wikipedia article are about why it is evil.

link|flag
vote up 6 vote down

'Manager' classes. e.g.

DataManager
BusinessLogicManager
WidgetManager

What the **** does 'Manager' mean? Be more specific! If your WidgetManager has so many Widget responsibilities that there is no more specific name, then break it down.

This is a conversation I have had too many times with myself when looking at old code.

link|flag
Most "manager" classes I have seen are either god objects or contain nothing but getters & setters. – finnw Jun 7 at 0:44
vote up 1 vote down

Strategy

The reason being that I suspect most people are taught to implement it using a class and a method.

Consider the following Haskell code:

ascending = sortBy compare somelist
descending = sortBy (flip compare) somelist
pairsBySecondComponent = sortBy (comparing snd) somelist

That's the strategy pattern in action: compare, (flip compare) and (comparing snd) are the concrete strategies in this case (they're plain old functions), and the function signature a -> a -> Ordering is the strategy "interface".

The brevity of this illustrates that design patterns don't have to be so heavyweight or bulky. The way you want to implement Strategy in Java (interface, classes) is not a good way. It's a way that works around Java giving you the wrong abstractions for the job you need to do. This should not be considered normal or acceptable.

For that reason, assuming my assumption about the way it's taught is correct, I don't like the Strategy pattern very much.

There are some of other patterns which are also specific instances of the general "Function Pointer" pattern. I don't like them very much either, for very much the same reasons.

link|flag
How else do you do this in Java without using interfaces? – fiddlesticks Mar 26 at 10:31
You don't do it in Java without interfaces. This is part of the problem with Java. And that's why functional programmers tend to say that "Design Patterns" are just codifications of the strategies you use for getting around the lack of expressitivity in the language. – Curt Sampson Jun 7 at 0:04
vote up 1 vote down

My least favourite is the "put 'Helper' or 'Manager' on to the end of the class name" pattern.

EDIT: And I've proved that I'm a lame programmer by, as Chris pointed out, forgetting "Util".

link|flag
1  
It's the Utils class Anti-Pattern renamed. ;) – Chris Missal Jun 7 at 0:07
vote up 0 vote down

MVP. It's MVC but broken.

Oh no but wait, developing an application IS completely different than following good practise such as "It's just a view".

link|flag
Can you be a little more specific on supporting your point of view? Why is MVP broken? – Hilton Perantunes 7 hours ago
vote up -1 vote down

I think that Design Patterns should not be used blindly, implementing them simply because it's cool: they have a well-specified CONTEXT, and using them when appropriate MAY help, but in any other case they're just a waste of time, when not an hindrance to the correct system functioning.

link|flag
This is so true. – d03boy Jun 7 at 0:33
vote up -1 vote down

Flyweight. Totally useless.

link|flag
2  
I use it all the time, actually. And the particularly nice thing about it is that it leads you to immutable objects, which I have learned the hard way are a very good thing. – Curt Sampson Jun 7 at 0:00

Your Answer

Get an OpenID
or

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