vote up 198 vote down
star
183

OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition:

In computer programming, code smell is any symptom in the source code of a computer program that indicates something may be wrong. It generally indicates that the code should be refactored or the overall design should be reexamined. The term appears to have been coined by Kent Beck on WardsWiki. Usage of the term increased after it was featured in Refactoring. Improving the Design of Existing Code.

I know it also provides a list of common code smells. But I thought it would be great if we could get clear list of not only what code smells there are, but also how to correct them.

Some Rules

Now, this is going to be a little subjective in that there are differences to languages, programming style etc. So lets lay down some ground rules:


** ONE SMELL PER ANSWER PLEASE! & ADVISE ON HOW TO CORRECT! **

  • See this answer for a good display of what this thread should be!

DO NOT downmod if a smell doesn't apply to your language or development methodology

We are all different.

DO NOT just quickly smash in as many as you can think of

Think about the smells you want to list and get a good idea down on how to work around.

DO downmod answers that just look rushed

For example "dupe code - remove dupe code". Let's makes it useful (e.g. Duplicate Code - Refactor into separate methods or even classes, use these links for help on these common.. etc. etc.).

DO upmod answers that you would add yourself

If you wish to expand, then answer with your thoughts linking to the original answer (if it's detailed) or comment if its a minor point.

DO format your answers!

Help others to be able to read it, use code snippets, headings and markup to make key points stand out!

flag
add / show 11 more comments

148 Answers

1 2 3 4 5 next
vote up 251 vote down

Huge methods/functions. This is always a sure sign of impending failure.

Huge methods should be refactored into smaller methods and functions, with more generic uses. Those methods should be appropriately organized, e.g. in to new classes.

See also these related questions on SO:

link|flag
add / show 5 more comments
vote up 236 vote down

Commented out code. I realize that this one is a lot of people favorite thing to do, but it is always wrong.

We are in an age when it is easy to setup a source code versioning system. If code is worth keeping, then check it in, it is saved now and forever. If you want to replace it with a new version delete it:

  • The old version will be around if you need it.
  • Commented out code makes code hard to read since it still looks like code, and takes up the same space as real code.
  • After a few changes to the original code, the commented out version is way out of date

I once saw a function that had over a hundred lines of commented out code, when I removed the commented out code, it was only 2 lines long.

Sometimes we comment out code during debugging and development. This is ok, just make sure to delete it before it is checked in.

link|flag
13 
Yeah, until you want to locate an old snippet of code you deleted six months and one hundred versions ago. Remember some unique feature of the text and search on that? Iffy. I had an experience like that recently, and I did eventually find the snippet; took lots of time. Easier to comment out. – Cyberherbalist Sep 23 at 0:18
5 
It depends. Code that no longer has any relevance should be deleted. Code that might be needed, or that indicates something that needs doing, can remain in comments as a reminder. Of course, this only works if you avidly prune your comments to make sure only the relevant ones stay. – Marcus Downing Sep 28 at 0:06
add / show 19 more comments
vote up 200 vote down

Duplicate or copy/pasted code. When you start seeing things that could easily be reused that aren't, something is very wrong.

Refactoring to make reusable assemblies is the only cure.

See the Once and Only Once principle, and the Don't Repeat Yourself principle.

Simian, a code similarity detection tool works wonders for fixing this.

duplo is a good open source project that provides a free alternative.

link|flag
add / show 5 more comments
vote up 155 vote down

Methods with a ridiculous (e.g. 7+) amount of parameters. This usually means that there should be a new class introduced (which, when passed, is called an indirect parameter.)

link|flag
1 
This is doubly true if you find the same parameters being passed to multiple methods. Then if something needs to change you can fix it in one spot instead of having to touch every method signature and call. – Eric Burnett Sep 22 at 14:22
2 
If you wrap the parameters in a class, then don't you just end up with a new class that has a constructor with 7+ parameters? How is this an improvement? – recursive Jan 11 at 2:25
7 
Alan Perlis said this quite beautifully: "If you have a procedure with 10 parameters, you probably missed some." – Gorpik Feb 16 at 8:06
add / show 9 more comments
vote up 142 vote down

Avoid abbreviations.

Variable names such as x, xx, xx2, foo etc (obviously if you are using Cartesian coordinates, 'x' is perfectly appropriate.) Rename.

link|flag
5 
I go by a different idea. Global variable and function names should be very well thought out. Local names should be any old mess, i, m, u, v, tmp, whatever. If you're using more than about 5 local variables, you need more functions, not better names. – Ali Sep 25 at 0:26
3 
The name should be as long as the distance you are from it's declaration, so I agree with Ali. – bruceatk Oct 16 at 0:52
2 
I agree with your point, however, it only applies to inexperienced coders who tend to be poor at variable naming. Using long variable names for small scopes is a code smell in itself. Having so many variables in a scope that single character variables reduce readability means you need to refactor. – Max Howell Oct 22 at 0:14
add / show 10 more comments
vote up 125 vote down

Empty catch blocks. Especially if the exception being ignored is java.lang.Exception/System.Exception.

If a block of code could throw multiple exceptions, there should be multiple catches. Each handling the appropriate exception accordingly.

An empty catch might mean the developer doesn't have an understanding of logic in the try, and the empty catch was added to pass the compiler. At the very least they should contain some kind of logging logic.

link|flag
10 
I disagree with you. If a code can throw many types of exception, you should do as many catches as you need to treat all exceptions, meaning that, if all you do is logging, or maybe showing a MessageBox, there should be only one catch. More than one falls into the duplicate code category. – Leahn Novash Oct 2 at 13:43
add / show 11 more comments
vote up 103 vote down

Pacman ifs

nested ifs

if (cond1) {
    /* Something */
} else if (cond2) {
        /* Something else */
    } else if (cond3) {
            /* Something else, again */
        } else if (cond4) {
                /* Something else, again */
            } else if (cond5) {
                    /* Something else, again */
                } else if (cond6) {
                        /* Something else, again */
                    } else if (cond7) {
                            /* Something else, again */
                        } else if (cond8) {
                                /* Something else, again */
                            } else if (cond9) {
                                    /* Something else, again */
                                } else if (cond10) {
                                        /* Something else, again */
                                    } else if (cond11) {
                                            /* Something else, again */
                                        } else if (cond12) {
                                                /* Something else, again */
                                            } else if (cond13) {
                                                    /* Something else, again */
                                                } else if (cond14) {
                                                        /* Something else, again */
                                                    } else if (cond15) {
                                                            /* Something else, again */
                                                        } else if (cond16) {
                                                                /* Something else, again */
                                                            } else {
                                                                /* And goes on... */
                                                            }

a severe stench emanates when a horizontal scroll bar appears

link|flag
1 
I think there are too many parentheses in here... seems like you have 2 closing parens for each opening paren. Should be: <pre> if {cond1) { } else if (cond2) { } else ... </pre> I think what you're aiming for is <pre> if (cond1) { if (cond2) { if (cond3) { ... } } } </pre> – David Sep 22 at 20:54
2 
This code makes my nostrils want to leave my face. – RodgerB Sep 23 at 6:56
20 
"nested ifs" is the wrong title - they are not nested as written. The closing curly braces after the else ends it, and there should be no indentation of the elses. – Hamish Downer Sep 23 at 19:10
5 
I don't indent else if at all. If your indentation followed the same logic as the depth of braces, these are all at the same level. Personal choice I guess. – thomasrutter Mar 4 at 6:47
add / show 13 more comments
vote up 102 vote down

Comments that focus on what the code does and not why. The code tells you what it does (okay, there are exceptions, but that is another smell). Try to use the comment to explain why.

link|flag
3 
There is a school of thought that any comment is a bad thing as this just covers up the fact that your functionality is not clear enough, your variables are not named correctly and your tests are specified in enough detail – Paul Shannon Sep 22 at 13:00
add / show 5 more comments
vote up 91 vote down

Not being able to understand what given piece of code does in less than 15 seconds

99 chances out of 100 that this code is wrong. Either it's too complicated or just badly engineered.

Cure:

Find the code author, make him to explain what the darn code does until he starts to cry "I wrote it yesterday, how can I remember what it does?! I would never write such code again! I promise!!!"

Alternate cure:

Refactor to make the code plain. Everything has a good name.

link|flag
5 
What is your code is actually doing something that's part of a really complex algorithm? – Wouter Lievens Feb 4 at 9:46
1 
@Wouter: The function name and the name of the algorithm should probably let you know what's being done in 15 seconds, if you're working on the same project. – Andrei Krotkov Apr 4 at 22:05
add / show 7 more comments
vote up 89 vote down

Huge code blocks in switch statements. Move code to separate functions. Consider using a function table (dictionary).

link|flag
add / show 5 more comments
vote up 86 vote down

Magic numbers

If code has lots of numbers all the way through it will be a pain to change them and you may miss something. Those numbers might be documented or commented, but comments and code can very easily get out of sync with each other. When you next read the code will you remember what the number means or why it was chosen?

Fix this by replacing the numbers with constants that have meaningful names. But don't make the names too long. It's up to you whether to import these constants from another file or limit them to the immediate scope.

Similarly for excessive amounts of string literals in the code, either use well-named constants or read them from a resource file. This can also aid internationalisation/translation efforts.

link|flag
add / show 1 more comment
vote up 75 vote down

Getting and re-getting the same property.

e.g.

if(getValue() != null && getValue().length() > 0 
    && !getValue().startWith("Hugo") ...)

Who knows what is going on inside getValue()? Could be something costly.

I would prefer:

String value = getValue();
if(value != null && value.length() > 0 
    && !value.startsWith("Hugo") ...)
link|flag
3 
I understand where you are coming from but there is something to be said about not introducing additional temporary variables... This is what Fowler argues in Refactoring. – Paul Osborne Sep 23 at 2:55
4 
@Daok We can introduce another code smell then: relying on compiler optimization instead of writing proper code – Sklivvz Sep 23 at 6:38
1 
Surely an optimizer wouldn't refactor out a function call? As Gamecat said, it could (but shouldn't) have side effects. It can't be done – Gerry Feb 12 at 22:50
add / show 9 more comments
vote up 70 vote down

Premature optimization

If you read application level code littered with bit shifts instead of multiplication, and similar optimization tidbits, consider educating the author about the tradeoff between optimization and readability.

link|flag
2 
I'd say that an "algorithm optimisation" is almost always worth doing on the first or second pass of coding, whereas "micro-optimisations" should be left until you have finished with all functionality and the only thing left is performance. – vatine Nov 17 at 13:39
add / show 7 more comments
vote up 65 vote down

Reusing Variables

Using the same variable to mean different things in different parts of the same thing, just to save a couple of bytes on the stack (or even just because you couldn't be bothered declaring a new variable). It's very confusing - don't do it!
Declare a new variable - the compiler is smart enough to place them in the same memory location for you if their uses don't overlap.

link|flag
1 
This point is good. But it would benefit enormously from an example. – Max Howell Oct 22 at 0:24
add / show 3 more comments
vote up 60 vote down

Overengineered design

This is common when introducing ten thousands frameworks and then handling everything indirectly, even for very simple chores.

So you have and ORM and an MVC framework, and several different layers in your application: DAO, BO, Entities, Renderers, Factories, at least a couple of contexts, interfaces crawl all over your packages, you have adapters even for two classes, proxies, delegate methods... to the point that there isn't even a single class which does not extend or implement something else.

In this case you'd better prune some dead branches: remove interfaces wherever they don't provide useful class interchangeability, remove man-in-the-middle classes, specialize too generic methods, throw in some generics/templates where you wrote your own classes that are only wrappers for collections and don't really add any value to your design.

NOTE: of course this does not apply to larger, ever changing applications where the layers and the intermediate objects are really useful to decouple stuff that otherwise would be handled by shotgun surgery.

link|flag
add / show 4 more comments
vote up 60 vote down

Static variables or the design patterns variant: Singletons

How to refactor:

  1. Find the largest scope in which the variable lives, and move it there as a non-static variable (if it is a singleton, convert it to a non-singleton and make an instance to pass around).

  2. You should now get lots of compile errors (missing reference to the static variable/singleton). For each one, decide whether it makes best sense to inject the reference as a instance member in the class (either in the constructor, if it is a mandatory dependency, or in a setter-method, if it is an optional dependency) or to pass the reference in the method-call. Make the change. This will probably propagate outwards until you reach the outer scope where the variable now lives.

link|flag
2 
Good one. Singleton is one of the hardest code smell to get rid of. Beginners always use them because it's the first pattern they learn and it's so attractive. – Coincoin Sep 22 at 12:15
6 
And what exactly is wrong with a Singleton? I'm not a very experienced coder, but I've coded my fair share of OOP, and I've used some very useful Singletons. Replacing them with variables that I would need to pass as parameters just sounds like masochism to me :) – aidos Sep 22 at 20:09
1 
jpeacock, No, there are obviously valid reasons to use a singleton. Problem is when you start using it for a LOT of things. – Jon Limjap Sep 23 at 6:28
add / show 18 more comments
vote up 45 vote down

negatives

They are a burden on the human mind.

double negatives

I ran into a piece of code such as:

if( ! value!=1 )

Quite confusing to read! I suspect the original programmer was debugging and changing the logic made the program work; however was too lazy to properly change to:

if( value == 1 )

else is a negative

When you see else you have to mentally negate the original condition. If the original condition already includes a negative, then you have to work extra hard. Negate the condition and swap the conditional clauses.

If the else clause is the "happy path", i.e. the non-error case, then your brain has to work to follow the flow of code. Use Guard Clauses instead.

single negatives

Even single negatives require mental effort. So it's easier to read:

if (IsSummer())

than

if (!IsWinter())

Also

link|flag
3 
Worse still when the variable name has a negative connotation if (NotSystemUpdatable == false) ... – onedaywhen Oct 14 at 15:20
2 
You have to be careful with those kind of changes though. !value != 1 is not !(value != 1), it's (!value) != 1. In this case they turn out to be the same, but you have to be careful with operator precedence when you "fix" code like this, it's real easy to change the meaning of the code. – Ferruccio Nov 5 at 3:11
add / show 7 more comments
vote up 40 vote down

Presence of types whose names start\end with "Utility", "Helper" or "Manager"

This is a very good sign of presence of types violating SRP (Single Responsibility Principle).

Analyze such types carefully, Often you can find that single class contains a bunch of unrelated methods - split it. Sometimes you can find that some method is used only once (often happens after refactoring), consider purge such methods.

link|flag
add / show 11 more comments
vote up 37 vote down

Any thread which depends on a sleep(n) call where n is not 0 (to release other threads)

For why - see here http://www.flounder.com/badprogram.htm#Sleep

Basically - the time you set for a sleep(n) call can always be wrong.

To avoid this sort of thing, coders should be using a more "waitFor a specific event" structure than "sleep for some arbitrary time waiting for other things" which nearly always can be wrong...

link|flag
add / show 5 more comments
vote up 37 vote down

Primitive Obsession

Always using "int" and "double" where you should have a class such as "Money" or "OrderValue" so that you can apply different logic or rounding. It also ensure method parameters are better structured.

string is the most common object of such obsession.

link|flag
2 
using double for money is especially bad. – grom Sep 29 at 6:31
4 
I think the alternative is much, much worse (i.e. no primitives, EVERYTHING is typedef-ed). This is a sure-fire way to render code completely unreadable. Long-time C++ devs seem to be the worst about this. – Matt Peterson Mar 3 at 16:35
add / show 3 more comments
vote up 36 vote down

Inconsistent naming of variables, methods, functions etc (mixing CamelCase with hpwsHungarian with everything_separated_with_underscores)

link|flag
1 
+1: I agree, but I think it's ok to mix things depending on what your doing. For example, when I use C++: ThisIsAFunction(), this_is_a_class_member_variable_, this_is_a_local, kThisIsAConstant just like Google's C++ style guide: google-styleguide.googlecode.com/svn/trunk/… – Tom Apr 16 at 6:14
add / show 2 more comments
vote up 34 vote down

Comments that precede code such as the following:

// The following is a bit hacky, but seems to work...

...or...

// Quick fix for <xxx>
link|flag
7 
Is a hack necessarily a code smell? I would certainly say an UNCOMMENTED hack maybe.. But a commented hack.. Not so sure? Sure it may not be great code, but is it a smell if its encapsulated and identified? – Rob Cooper Sep 22 at 12:01
1 
I would say that such comments are deliberate code smell. They are meant to say "fix this when you have time". – slim Sep 22 at 13:12
5 
hacks aren't code smells. A hack that takes 2 lines of code's equivalent might well be 50 code files to perform elegantly. – Quarrelsome Sep 22 at 14:14
add / show 15 more comments
vote up 32 vote down

Inappropriate Intimacy

When classes access each other's fields or methods too much.

Some suggestions how to refactor/avoid:

link|flag
add / show 1 more comment
vote up 31 vote down

Just a general comment about code smells:

Both of my answers have received several comments like this: "But sometimes XX is the right thing to do" or "If you always replace YY with ZZ you are going to end up with an overengineering pile of ...".

I think these remarks mistake the meaning of a code smell: A code smell is not the same as an error - if they were, we would probably just make the compiler find them and return an error.

A code smell is nothing more than something that suggests that here is a possible refactoring. Smells may be more or less strong, and it is usually impossible to make hard and fast rules about them.

Sometimes a method with six arguments may be the best solution, I don't think I would like a method with seven arguments, but I would oppose a coding standard that forbid them. In some applications, a static variable might make perfect sense, but I wouldn't like that a large application hid its entire internal dependency structure in a big clump of static variables.

To summarize: code smells are simple heuristics that indicate that you might want to consider refactoring and suggest a possible appropriate refactoring.

link|flag
add comment
vote up 29 vote down

Methods with boolean arguments

Methods with boolean boolean arguments tend to hurt readability. A common example I've seen is the following:

 myfile = CreateFile("foo.txt", true);

In this example, its reasonable to assume that this snippet creates a file called "foo.txt", but we have no idea what the "true" means. However, if the snippet was instead:

 myfile = CreateTempFile("foo.txt");

You'd have a much better idea of what the coder intended. With that in mind, it's generally a good idea to break up methods with boolean arguments into two methods. So that

 File CreateFile(String name, boolean isTemp);

Becomes

 File CreateFile(String name);
 File CreateTempFile(String name);


You can also get arround this by creating an enum:

myFile = CreateFile("foo.txt", FileType.Temp);
link|flag
11 
You can also get arround this by creating an enum. myFile = CreateFile("foo.txt", FileType.Temp); – Martin Brown Oct 31 at 9:57
1 
+1 for enum +1 for languages with named parameters! – chickeninabiscuit Jan 15 at 5:39
add / show 7 more comments
vote up 26 vote down

Catching exceptions in the same method that threw them. This can indicate that exceptions are being used for control flow, which is a big no-no. Use a break or goto instead.

link|flag
1 
I think goto isn't a good answer, because it makes code harder to read - you see a label but have no way of knowing what points to it. – Tommy Herbert Sep 23 at 13:56
1 
Exceptions caught within the same function aren't always bad. Exceptions in truly exceptional circumstances can keep the main code flow clearer without using stuff like goto. – Greg Rogers Sep 25 at 0:58
add / show 10 more comments
vote up 26 vote down

Switch statements

Switch statements might be okay, but they are a smell that shows you should consider using inheritance or a State or Strategy pattern.

One example: (obvious, but I have seen something like this several time):

switch(GetType().ToString())
{
  case "NormalCustomer":
    // Something
    break;
  case "PreferredCustomer":
     // Something else
    break;
}

A bit less obvious:

switch(this.location.Type){
  case Local:
    // Something
    break;
  case Foreign:
    // Something else
    break;   
 }

How to refactor

  1. Move the switch to a separate method.

  2. Do you already have an appropriate inheritance hierarchy?

    2a. If you do, you might only need to move the individual case-statements to individual subclasses.

    2b. If not: introduce inheritance - either directly, or by using the State- or Strategy-pattern.

Edit: I am not arguing that you should replace all switches with polymorphism. Only that switches are a place where you should ask yourself whether polymorphism might make the code simpler. If replacing the switch would make the code more complex ("overengineered"), just don't replace it.

link|flag
2 
This seems far too general to me - switch statements have many completely valid uses and this "smell" seems likely to encourage over-engineering. Perhaps it could be clarified with an example? – Simon Sep 22 at 13:13
1 
Using a pattern when code is enough is code smell. There is no problem in those switch statements. A strategy pattern would be 2x more code, 2x more bugs, etc. You're being OOP purist when you suggest the switch to be moved to another method. Besides, what would that method contain, if not a switch? – Leahn Novash Oct 2 at 13:59
add / show 7 more comments
vote up 24 vote down

Testing a bool for equality with true

bool someVar
....
if(someVar == true)
{
   doStuff();
}

The compiler will probably fix it, so it doesn't represent a huge problem in itself, but it indicates that whoever wrote it struggled with, or never learnt the basics, and your nose should be on extra high alert.

link|flag
3 
One minor exception to the code above. Some languages, like JavaScript, have a notion of falsy. if (!x) will be true for x=0, x=null, x=undefined, etc. Checking if (x === false) to distinguish it from if (x === undefined) would be legitimate. – George V. Reilly Apr 8 at 7:27
add / show 6 more comments
vote up 23 vote down

In languages that support OO, switching on type (of any kind) is a code smell that usually points to poor design. The solution is to derive from a common base with an abstract or virtual method (or a similar construct, depending on your language)

eg.

class Person
{
    public virtual void Action()
    {
        // Perform default action
    }
}

class Bob : Person
{
    public override void Action()
    {
        // Perform action for Bill
    }
}

class Jill : Person
{
    public override void Action()
    {
        // Perform action for Jill
    }
}

Then, instead of doing the switch statement, you just call childNode.Action()

link|flag
add / show 5 more comments
vote up 22 vote down

Smell: Testing of "normal" code instead of exceptions.

Problem: The "normal operation" or most commonly/naturally executed code is put inside if bodies or attached as an else body to some error checking.

Solution: Unless it is impossible or there is a very good reason for not to, always test for exceptions and write your code so that the normal case is written without any extra indentation.

Examples:

void bad_handle_data(char *data, size_t length)
{
        if (check_CRC(data, length) == OK) {
                /*
                 * 300
                 * lines
                 * of
                 * data
                 * handling
                 */
        } else {
                printf("Error: CRC check failed\n");
        }
}


void good_handle_data(char *data, size_t length)
{
        if (check_CRC(data, length) != OK) {
                printf("Error: CRC check failed\n");
                return;
        }
        /*
         * 300
         * lines
         * of
         * data
         * handling
         */
}


void bad_search_and_print_something(struct something array[], size_t length, int criteria_1, int criteria_2, int criteria_3)
{
        int i;
        for (i=0; i<length; i++) {
                if (array[i].member_1 == criteria_1) {
                        if (array[i].member_2 == criteria_2) {
                                if (array[i].member_3 == criteria_3) {
                                        printf("Found macth for (%d,%d,%d) at index %d\n", criteria_1, criteria_2, criteria_3, i);
                                }
                        }
                }
        }
}


void good_search_and_print_something(struct something array[], size_t length, int criteria_1, int criteria_2, int criteria_3)
{
        int i;
        for (i=0; i<length; i++) {
                if (array[i].member_1 != criteria_1) {
                        continue;
                }
                if (array[i].member_2 != criteria_2) {
                        continue;
                }
                if (array[i].member_3 != criteria_3) {
                        continue;
                }
                printf("Found macth for (%d,%d,%d) at index %d\n", criteria_1, criteria_2, criteria_3, i);
        }
}


Rule of thumb: Never test the normal case, test exceptions.

link|flag
1 
+1 for the examples; i'm sure sure about the general rule. – stefan.ciobaca Jan 9 at 13:34
add / show 3 more comments
1 2 3 4 5 next

Your Answer

Get an OpenID
or

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