vote up 21 vote down star
8

I'm just wondering what are some of the classic mistakes we all make. I think before working on writing good code, you must learn to recognize bad code... especially when it's YOUR code!

flag

31 Answers

1 2 next
vote up 19 vote down check

http://sourcemaking.com/antipatterns

Spaghetti Code and Fire Drill seem to be pretty common to me.

link|flag
show 2 more comments
vote up 0 vote down

I don't make mistakes! </sarcasm>

link|flag
show 11 more comments
vote up 15 vote down

It's gotta be the Big Ball of Mud.

A Big Ball of Mud is a haphazardly structured, sprawling, sloppy, duct-tape-and-baling-wire, spaghetti-code jungle. [...]
[...] this pattern is most prevalent because it works — at least at the moment it is developed. However, programs of this pattern become maintenance nightmares.

link|flag
vote up 2 vote down

You can find a decent collection of these here: http://forums.thedailywtf.com/forums/p/8599/163647.aspx

link|flag
vote up 27 vote down

I find premature generalization to be the worst one:

Creating complexity in your software, because you might need this later on.

link|flag
show 4 more comments
vote up 10 vote down

I love seeing the "For Loop Case Construct".

for(int i = 0; i < MY_NUM; i++)
{
    switch(i)
    {
       case 1 :
       <snip>
       case 2 :
       <snip>
       .....
    }
}

Good Times!

link|flag
show 4 more comments
vote up 3 vote down

Singletonitis: That got to be the most used pattern in Java.

link|flag
vote up 6 vote down

my favorites

  • hardcoded magic-number crap -> int myNumber = 23,333;
  • copy and paste code -> aaargh, spaghetti @ its finest
  • double-checked locking -> wrong usage of locking (volatile ftw)
  • lava flow -> sourcecode which is no longer needed
  • blob -> god object
link|flag
vote up 1 vote down

I've seen a few very easy to understand ones over and over again:

  • Magic numbers. Even worse is when magic numbers are passed through multiple tiers.
  • Excessive use of "I'll get to it later." I've worked with several developers who put so much TODO, stubs, and hard coded return values in their code that they forget what they haven't implemented yet. It's pretty sad when a stub ends up in production and it comes back to haunt you a year later.
  • Methods which rely on other methods to be called first or they won't work correctly.
link|flag
vote up 3 vote down

Premature optimisations.

link|flag
vote up 1 vote down

Something I see a lot here that shoots developers in the foot more often than not: premature optimization.

link|flag
vote up 26 vote down

Commenting out code instead of deleting it.

link|flag
1  
Fully agree - thats what your source code control tools are there for – RichH Sep 19 '08 at 20:09
3  
Absolutely disagree. Small sections of commented out code (with comments) as an example of a how <i>not</i> to change a particular item, or how a previous logical-looking implementation was subtly broken, can prevent a lot of wasted time down the road as the reasons are repeatedly re-discovered. – Zed Oct 12 '08 at 18:01
show 2 more comments
vote up 5 vote down
if (someBool == true)

...instead of...

if (someBool)

Or running .ToString() on a string. I've been guilty of both.

link|flag
show 3 more comments
vote up 1 vote down

In a non-memory managed language I see the lack of try / finally blocks when objects are created a lot.

Or in Delphi where they assign an object an owner, and then free the object quickly anyway, which results in two notifications to the owner that are unnecessary.

Also the use of a try / catch (or except) when they should have used a try / finally (or vice versa). I know some programmers who do this religiously because they don't like the other.

link|flag
vote up 49 vote down

Singleton + public static access!

"We'll only need one of these so lets make it a singleton and statically access it!"

Yea, thanks i'm now trying to test the code and my unit test is now an integration test thanks to you.

Pattern-o-mania

"We need to make some software.... how do we do that? I know! Lets use all the patterns in this book, even if we don't actually need them!"

Cannot... understand... insane and crazy architecture.... what's that... another factory?.... arrrrggghhhh!

Two roads to the same place

"This is a completely different operation, so lets make different methods and different code paths with the powers of copy+paste+little edits"

Thanks, now I have to fix bugs in more than one place.

Form first development

"I like Visual Studio it helps me make applications without knowing what I am doing"

Must....resist....urge...to...track.. down.. former.. developer.. with.. knife....

Passing on the problem

"Hmmmm, how do I handle this problem. I know i'll add another method and let the caller decide!"

Okay so your wrapper exposes more methods than what you are wrapping. Thanks, that really simplifies things.

Object of doom

"Wait.... why does anyone need to create their own application, they can just use my object to do EVERYTHING"

Even if I spend a week reading the documentation I still wont know what all your method calls do. I just want to do xyz! :'(

Reflection Abuse

"Now i'll just use reflection to invoke this method and hardcode the name of the method into the source..."

Thanks for making some invisible breaking changes. If only they hardcoded their personal contact details into the source as well so I could hunt them down......

XML for everyone!

"Hmm.. its not working... mebbe I just need some more xml"

No, you need more cyanide.

A complete disregard for error conditions

if(someObj == null)
{
    DoMyFunkyThang();
}
else
{
   // ah fooey and gosh-darn it, this will never happen
}

IMyInterface someInterface = someObject as IMyInterface;
someInterface.PerformSomeOperationWithoutEvenWorryingThatItMightBeNull();

Huh? NullReferenceException.... this is nothing to do with me yet I have to pull out the debugger and solve this to perform todays task. No clues about what is wrong.... :(

Using exceptions in NORMAL PROGRAM OPERATION

I have no idea what these people are thinking

Even WCF does this..... why MS? You did so well at this in .NET 2.00!

link|flag
1  
Fine, i'll let the edit stand if we're just going to fight over it. What I find entertaining is that we find a four letter word more offensive than the two times I implied murder. Humans have some funny societal conventions. :) – Quibblesome Sep 12 '08 at 10:09
1  
I think "He needed killin', your Honor" is still justifiable in my state. No jury of programmers would convict you ;-) – Steven A. Lowe Sep 24 '08 at 15:19
show 1 more comment
vote up 3 vote down

Storing XML in a database BLOB field.

Bonus points if the xml looks something like:

<record>
<field name="first">asdF</field>
<field name="last">jkl</field>
</record>

Double-bonus if the XML was generated using a homegrown engine that doesn't always generate valid XML.

link|flag
vote up 14 vote down
try
{
  DoSomeImportantThing();
}
catch( Exception )
{
}

Not fun.

link|flag
vote up 5 vote down

Reinventing the wheel:

Hey, I need to sort, this list. I better implement a sorting-algorithm. The one in the library is surely not as good as mine.

link|flag
1  
Reminds me a fellow developer who optimized web application by implementing his own sorting. Naturally this sped up page load several milliseconds so it was justified... – Petteri Hietavirta Oct 20 '08 at 21:42
vote up 2 vote down

Code without tests (or testability)!

Kind Regards

link|flag
vote up 5 vote down

Probably Yet another meeting will solve it.

You have a problem with schedule. To solve this problem, you start making meetings. People that should be involved with delivering the project start to be involved in this meetings. Project gets later, oh... Yet another meeting will solve it.

link|flag
vote up 1 vote down

Primitive Obsession (see here here and here)

Fear of defining task-appropriate classes/types, which leads to representing everything in globs of primitive types (int, char, boolean, ...). Often driven by excessive concern with "efficiency" (i.e. execution speed at the expense of clarity, maintainability, and robustness).

link|flag
vote up 1 vote down
  • Premature optimization
  • Copy'n'Paste programming (copying instead of parameterizing/generalizing)
link|flag
vote up 2 vote down

I'm not a believer in lists - they just get outdated too soon. Instead, I'd refer you to the original Wiki - http://c2.com/cgi/wiki? and the page there - http://c2.com/cgi/wiki?AntiPattern

A warning though - you can read that site for days, though you'll likely be a better developer for it.

link|flag
show 1 more comment
vote up 2 vote down

Using instance level variables when local variables would work just fine. In a multi-threaded environment this can cause some nasty problems.

Example:

SomeClass{
  private Object rtnValue;
  public Object someMethod() {
    rtnValue = lookupObject();
    return rtnValue;
  }
}
link|flag
vote up 0 vote down

Putting implementation into the header file ... makes debugging impossible!

link|flag
vote up 2 vote down

Software vendor lock + golden hammer

link|flag
vote up 1 vote down

I particularly like when when people don't change the name of the automatically generated Form1. This usually indicates that there is not likely to be any attempt at separating UI from logic, and that I'm about to spend the next six hours spelunking through the vast spaghetti maze to find the ten places I need to change in order to make a minor adjustment.

Code files containing many methods with no documentation at all with bodies that all look like this are fun too.

public Class1  
{
public void Temp()  
{
//HACK: Fix this later maybe
throw new NotImplementedException();
}

Added Bonus: Under Visual Studio 2005, if method stubs such as this are auto-generated the exception message was specified as a constructor parameter breaking CLS compliance for nothing because the specified message was the same one as the default constructor uses.

link|flag
vote up 1 vote down

hardcoded strings (aka magical values)..

link|flag
vote up 1 vote down

I'd love a name for this (probably a variant of "reinventing the wheel"):

Where I work we effectively have lots of similar projects. The goals are very different, but the technology is similar.

But when a project implements new functionality that may be useful in other projects, they often don't implement it in a reusable way. Either because they don't think about it, or because it takes longer.

So projects ends up implementing the same thing again and again (to save time), but in slightly different ways.

link|flag
vote up 0 vote down

"Magic Button".

I remember the days when I used to write VB code and all DB connection, UI data population work used to be behind one single button click. :)

link|flag
1 2 next

Your Answer

Get an OpenID
or

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