vote up 16 vote down star
8

By favorite I mean the one that gets your goat the most, not the one you enjoy using the most.

I'm fairly new to the concept of anti patterns and I'd like a list of do not do's. An explanation of why it's an antipattern and what problems it causes would be good too.

flag

66% accept rate
A link for a list: en.wikipedia.org/wiki/Anti-pattern – Liran Orevi May 6 at 7:23

24 Answers

vote up 24 vote down check

The "Daddy" of them all. The Big Ball of Mud. Possibly because every project I've ever worked on, or seen, has ended up using this pattern to some extent or other.

This one is the most important Anti-Pattern as all others are encompassed by it. Its the pattern that tells you how you write code over time. How the best designs end up dissolving as you add extra features, quickly fix bugs, and how those spiral into more and more unmaintainable code. Once you understand how these things happen, you can reduce their impact for the rest of your career, to some extent.

It also gives suggestions for resolving the problems that you end up with. That's very useful too.

link|flag
vote up 19 vote down

Overuse of design patterns! :)

link|flag
2  
Ironic, funny, and true all at once. – Daddy Warbox Nov 4 '08 at 9:28
I know this as the "Gold-plating" or "Golden hammer" anti-pattern :) – cwap Jun 11 at 12:07
vote up 16 vote down

God object is one of the most common and probably one of the worst anti-pattern you could found, especially in legacy code or large codebases. It just a testability/maintainability killer, which you can't easily refactor (cause it is a 84500 LOC class which is business critical, and you don't have 6 months to spend on this task)

link|flag
Yeech. I've got a potential god object in my project. I need to keep an eye on it. – Will Sep 24 '08 at 11:35
This could describe pretty much every badly designed database I've ever had the misfortune to work with. We have one table right now that has over 100 foreign keys - any suggestions to changes to that table are met with deadly force. "We can't change that, no time to test everything affected." – HLGEM Jan 8 '09 at 21:53
vote up 11 vote down
  • Big Ball of Mud: A system without structure or design. This usually happens to systems that been around for a long time, and maintained by lots of individuals who's come and gone. The end result is a system where you have no idea how to digest it.
  • Hard Code: Do I need to elaborate this?
  • God Object: Objects that has too much functionality. Usually happens when the designer of the class has poor understanding of OO.
  • Poltergeist: Objects used only for passing information.

My favorite book on antipatterns is AntiPatterns: Refactoring Software, Architectures, and Projects in Crisis by William Brown. I had a blast reading it!

link|flag
vote up 7 vote down

My favorite anti-pattern is called Singleton. Typically it is mis-used to ensure that there is a single instance of a given object, rather than refactoring to ensure that only a single instance is created. It makes testing difficult, and can be hard to implement correctly.

Another name for the Singleton anti pattern is "global variables". The name Singleton is often used because it sounds better than calling something a global variable. Global variables have been widely recognised as a bad thing and generally something to be avoided for nearly as long as software development has existed.

References:

link|flag
1  
I wouldn't consider a Singleton an anti-pattern at all. It's a very useful construct especially for "helper" or utility objects such as loggers. It is even more important when developing in environments where there are multiple asynchronous requests to process. – iAn Sep 24 '08 at 9:38
It is also useful with the registry pattern. Although that pattern should be used with caution - many applications call for a small set of "top-level" objects. Also, you can use it for factories. – Nelson LaQuet Sep 24 '08 at 9:41
I would hav thought the singleton was a design pattern rather than an antipattern... – Omar Kooheji Sep 24 '08 at 9:56
Lots of people down on singletons, but I haven't personally seen them abused yet. Not that I don't think its possible.... – Will Sep 24 '08 at 11:36
2  
The Singleton anti-pattern does not refer simply to having a single instance of an object, which is perfectly fine and exactly what you want for many objects. It refers to the specific method of creating and accessing them, which is often misused for extremely tight coupling. – ColinD Oct 13 '08 at 19:39
show 2 more comments
vote up 6 vote down

What I would call "sweeping exceptions under the rug".

In Delphi:

try {do stuff...} except end;

In C++:

try /* do stuff ... */ catch (...) {}

The latter even catches (and ignores) access violations and other win32 exceptions in older versions of VC++, and of course the Delphi version does likewise.

If you're expecting your code to throw a particular exception, by all means catch it and handle it - even doing nothing can be ok, for a particular exception. But ignoring all exceptions, even ones you weren't expecting... it just hides problems and makes bugs more obscure by delaying their effects and throwing away information the original exception would provide.

link|flag
1  
I prefer the Basic name for this one: On Error Resume Next – jfs Sep 24 '08 at 20:01
1  
It's also called "swallowing exceptions" – Andrei Rinea Oct 5 '08 at 11:35
vote up 5 vote down

Magic Pushbutton is everywhere in web apps, especially since javascript has taken off yet programming ability has remained the same in some webshops ;) It's like the arch nemesis of MVC

link|flag
vote up 3 vote down

This has been asked before.

link|flag
not to be pedantic but that one was commonly used antipatterns, this question is trying to discern what the most irritating ones are. – Omar Kooheji Sep 24 '08 at 11:02
Well, I suppose that's true - but the questions are very similar, so I think it's helpful to have a link to the other one here. – Blorgbeard Sep 24 '08 at 13:02
2  
Whatever is old is new again. Human turnover should be accommodated with social online services from time to time. Consider that a new design pattern. – Daddy Warbox Nov 4 '08 at 9:31
vote up 3 vote down

Copy/Paste

Seeing the same code pop up all over the place, doing the exact same thing. Then having to fix a bug in that code.

link|flag
1  
Didn't I already fix this bug... six times... last month... in four environments? – Kevin Panko Jul 27 at 17:41
vote up 2 vote down

I'm suprises that no-one has mentioned: "Yet Another Useless Layer" maybe it'a bit too strong but just make the fun out of to finda certain implementation in gcc and/or the libc from Linux. I can not make myself to believe that it can be good to wade through at least 3 levels of Macros and another five levels of function calls....

I would phrase it differently, there is a "too much levels of indirection".

Another example are OO Frameworks which do use inhertance way to much. E.g for "mimic" functional abstraction.....

Regards Friedrich

link|flag
vote up 2 vote down

I usually get anoyed by hardcoded magic numbers and large switch-case-enum-constructions.

link|flag
vote up 2 vote down

I don't know if this one has a name. But I've seen some programmers use Dictionary<string, object> or HashTable where they should have used classes. I think I would call it Misplaced Dynamicity or something.

And putting the keys in constants that are named what they contain does not make it better. Like const string Field23="Field23";

I came across a lot of code like this when taking over a VB.Net application. I started replacing the HashTables with classes. It made to code so much easier to read! In the process I also found some pretty awful bugs, that would have been very hard to find through testing.

I have decided that quote signs are a smell. The compiler does not look at stuff between quotes, so there is no type safety there. For example:

class Foo
{
  public string Bar;
}

Foo f=new Foo();
f.Bar = "content";

Is better than

HashTable Foo=new HashTable();
Foo.Add("Bar", "content");

Because the compiler will catch you saing f.bar in the first example, but not Foo["bar"] in the second.

link|flag
vote up 1 vote down

In PHP; using php files to execute a SQL query. I have seen this frequently, it will either make me laugh or cry (depending on if I am the one responsible for maintaining it). Here is an example:

**insert_product.php**
$sql = "INSERT INTO products (product_name ...) VALUES ('$product_name', ...)"
mysql_query($sql);

(note: this is the whole file. I've seen them in the hundreds of lines of code, as every field name and value where on a separate line)

Then, to use this awesomely reusable gem of code:

$product_name = "test";
include("insert_product.php");

One time I even say an instance of where the guy was using register_globals to insert the value of a POST form directly into the un-quoted VALUES section of a insert statement...

link|flag
Not exactly an anti-pattern; but close enough. People use this "technique" over and over again in their code thinking they are being clever. So I would assume it counts :) – Nelson LaQuet Sep 24 '08 at 9:23
Oh my, I had never seen this. MY EYES!!! – Vinko Vrsalovic May 19 at 19:14
vote up 1 vote down

The [Magic pushbutton][1] is very common in ASP.NET applications. It leads to poor testability and code duplication among other bad things.

[1]: http://en.wikipedia.org/wiki/Magic_pushbutton/"Magic pushbutton"

link|flag
vote up 1 vote down

Death march project. In this pattern managers throwing lots of resources to save a doomed project. Unreasonable working hours or too many developers are partial list of of the results.

It is usually caused by a miss estimation.

link|flag
2  
Someone should fire her... – jTresidder Jan 6 '09 at 14:16
vote up 1 vote down

Anti-Pattern from .Net, that's my favorite one

link|flag
vote up 1 vote down

A sub-type of the Gas-Factory I like to call the "Class-Factory."

A module that implements prime-number factorization should not take six classes to do so, and it's bad if it has them anyway because it's "good OOP."

link|flag
vote up 1 vote down

I guess I would call it spaghetti-code; but it's much more then that.

In PHP projects, it's very common to see page logic split like:

Index.php:

<html><head>...</head><body><?php include("body.php"); ?></body></html>

Body.php:

switch ($page)
{
   case: "default": include ("bodies/default.php"); break;
   ....
}

Default.php:

include("table_top.php");
print "<tr><td>";
print "Welcome to our site!";

$user = $_SESSION["user"];
if ($user)
{
    include("get_user_info.php");
    print "welcome " . $user_first_name;
}
print "</td></tr>";
include("table_bottom.php");

get_user_info.php:

$user = "root";
$pass = "1234";
include ("db_connect.php")
$sql = "SELECT user_first_name, user_last_name FROM users WHERE user_id = " $user;
$res = mysql_query($sql);
list($user_first_name, $user_last_name) = mysql_fetch_row($res);

It is easy for inexperienced develops to get caught up in this madness. Pretty soon they are repeating functionality, or attempting to change the markup but cant because it is all buried in all this mess. Also, the use of globals when applying this pattern can get very confusing and cause many untraceable bugs.

Most... learn very quickly; but it is a nasty design that you should always stay away with. Prefer MVC; or maybe just having a more consolidated library.

link|flag
vote up 0 vote down

I don't know whether it has some official name, but I call it DDD: "Debug driven development". That is when you end up with debugger whatever you do: refactor code, fix bugs or develop new features. I think it would be kind of methodological anti-pattern that appears as a consequence of interactions of many other anti-patterns.

link|flag
vote up 0 vote down

Not sure if this is the same as Nelson's answer (I don't PHP moonspeak) but I've seen this before and it makes me want to vomit:

string userName = UserNameTextbox.Text;
string password = PasswordTextbox.Text;
string sql = "select * where username = " + userName + " and password = " + password;
//etc more bad code

How many antipatterns can you see in that example above?

link|flag
This is a lack of sanitizing of database inputs. A good gate for SQL Injections... see safnet.com/writing/tech/… – Andrei Rinea Oct 5 '08 at 11:40
and use of select * is bad as well (never return more columns than you need). And of course you aren't actually referencing a table. Most selects really do need a from clause. – HLGEM Jan 8 '09 at 21:56
vote up 0 vote down

My vote would be Lava Flow http://en.wikipedia.org/wiki/Lava_flow_(programming)

Code is added but once a version is shipped to a Customer that part of the code can not be changed. Instead new code that does the same in a slightly better way is added with a flag to enable it or not.

Do that again and again and again to get to a untestable mess.

link|flag
vote up 0 vote down

Mine is clearly Interpreter.

This anti-pattern is also known as Greenspun's tenth rule:

Any sufficiently complicated C or Fortran program contains an ad hoc, informally-specified, bug-ridden, slow implementation of half of Common Lisp.

;-)

link|flag
vote up 0 vote down

Actually, I'd like to answer the "one you like to use the most" question. It's more fun. For contrarians, at least.

My favorite is SELECT *, because I'm a fan of ORM mechanics where you have an entire coherent row object packaged up together that can be retrieved and then interacted with as one likes. (Of course, the SELECT * is buried deep in the framework. No reason for front-line-developer code to use them; if you're doing something interesting enough that you have to write your own query in the first place, SELECT * would probably be nonsensical.)

I also violate the Law of Demeter like it's going out of style, but since I consider that brain-damaged "law" an anti-pattern in itself, the applicability is debatable.

link|flag
vote up 0 vote down

Assembling a team of lazy developers who don't care about continually learning

link|flag

Your Answer

Get an OpenID
or

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