up vote 498 down vote favorite
498
share [g+] share [fb]

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.

One smell per answer, please.

link|improve this question
53  
DO NOT add rules to your question. DO be grateful that people attempt to answer at all :) – OJ. Sep 22 '08 at 11:47
49  
The rules are there to try and help improve the quality of the thread and stop people typing before thinking. You will thank me later when you have a thread you can use as a resource. I am always grateful for input :) – Rob Cooper Sep 22 '08 at 11:50
9  
The FAQ doesnt cover things like this. Im trying to provide a thread that others will find useful. For that we need to a little bit of control. And it worked. People have been great, we have some great answers that are readable and offer solutions. Job done. I am no one, but my plan was a success. – Rob Cooper Sep 22 '08 at 18:53
29  
Btw, the correct response to a smell is to hunt for the kinds of mistake it heralds, not to remove the smell. The treatment for gangrene is not deodorant! – Steve Jessop Sep 24 '08 at 0:01
8  
I think you risk doing exactly that with a "fix the symptom" approach. The question should be "what was wrong with my thinking when I wrote this, that I decided it was a good idea?", not "I've broken a rule: if I change the code to obey the rule then it's fixed". – Steve Jessop Sep 27 '08 at 17:47
show 7 more comments
feedback

closed as not constructive by yoda, Mark Trapp, C. A. McCann, dmckee, Graviton Aug 3 '11 at 3:27

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

protected by bmargulies Jul 7 '11 at 21:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

162 Answers

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|improve this answer
1  
Double dispatch is a PitA though. And not the tasty sort with tzatziki sauce. – Shog9 Sep 23 '08 at 0:39
show 6 more comments
feedback

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|improve this answer
4  
This post could use some extra information about why this is a big no-no. I am not arguing it isn't, I just think that it isn't immediately obvious why this creates problems. I'd upvote it with the additional info. – JohnFx Sep 22 '08 at 14:38
3  
@ Tommy Herbert That's the same with a method. You have no way of knowing what points to it. – TraumaPony Sep 24 '08 at 4:01
3  
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 '08 at 0:58
2  
.....No, they're not. – TraumaPony Oct 8 '08 at 6:49
2  
@Martin, @Echostorm - In most languages, gotos are definitely more efficient than exceptions. – Andrei Krotkov Apr 4 '09 at 22:13
show 9 more comments
feedback

Not directly code, but it smells when VCS log messages are empty or has such pattern:

"Changed MyClass.java.".

Fix: write useful comments telling why the change has been done, not that it was done.

E.g.: "Fixed bug #7658: NPE when invoking display of user."

link|improve this answer
3  
I agree that its annoying and poor practice - but its not a code smell. – kenj0418 Apr 30 '09 at 20:58
show 3 more comments
feedback

Steve McConnell's book "Code Complete: A Practical Handbook of Software Construction" is essentially a 900 page answer to this question. It's an outstanding book.

http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670

link|improve this answer
feedback

Dumb comments or comments which are not updated when the code changes:

// Check all widgets (stops at 20 since we can never
// have more than 20 widgets).
    for(int i = 0; i < 55 && widget[i]; i++)
        processWidget(widget[i]);
link|improve this answer
9  
Surely also a case for using constants instead of magic numbers – John Ferguson Sep 23 '08 at 9:30
3  
"When the code and the comments disagree, both are probably wrong." - Norm Schryer – hlovdal Apr 26 '09 at 23:02
show 1 more comment
feedback

Reinventing the wheel.
For instance, I love doing code reviews and finding some brand-spanking-new shiny version of 3DES. (Happens more often than you'd think! Even in JavaScript!)
"Whaaat? We MUST encrypt the CC/pwd/etc! And 3DES is SOOO easy to implement!" It's always a challenge to find the subtle flaws that make their encryption trivially breakable...

How to correct it - quite simply, use the platform provided wheels. Or, if there is REALLY an ACTUAL reason not to use that, find a trusted, reviewed module already built by somebody who knows what he/she was doing.
In the above example, almost every modern language provides built-in libraries for strong encryption, much better than you can do on your own. Or you could use OpenSSL.
Same goes for other wheels, don't make it up on your own. It's stinky.

link|improve this answer
3  
Crypto is something of a special case, because it's so hard to get perfect, and the effects of screwing it up are huge. Imperfect crypto is worse than no crypto at all, because you may think you're safe when you're not... – BryCoBat Mar 12 '09 at 21:30
show 12 more comments
feedback

Large Classes

Large classes, that have more than one responsibility. Should then be separated.

link|improve this answer
show 2 more comments
feedback

Presence of GOTO statement.

Usually it means that either algorithm too complicated or function control flow is screwed.

No general practice unfortunately. Each case should be analyzed individually.

link|improve this answer
1  
goto still has uses in error handling in C – deemer Sep 23 '08 at 14:38
5  
I hate when people say this. Goto is useful in some cases, where it clearly is the best solution for the problem. It just doesn't happen very often, and in the other cases it's almost always the worst solution to the problem. – Anders Rune Jensen Dec 16 '08 at 19:37
4  
Microsoft themselves use GOTOs in their suggested practices, notably in retrieval of HTTP documents. GOTOs can be useful at some points, and I totally agree with Anders. I hate when people just think it's always bad. – Andrei Krotkov Apr 4 '09 at 22:21
show 6 more comments
feedback

Can't believe this hasn't been provided: high cyclomatic complexity for a method/function. Anything over 20 (with some exceptions like dispatcher methods) should have functions extracted out.

Source Monitor is an excellent tool for gathering source code metrics like this.

link|improve this answer
4  
The what? :) Sorry, but could you clarify a little? – Statement Sep 22 '08 at 13:56
2  
Smell should be something, that you can instantly see when you look at the code. But you don't look at the code and say: "Hey, this thing has cyclomatic complexity 25!" – Rene Saarsoo Feb 9 '09 at 9:20
show 7 more comments
feedback

Excessive Inheritance

Many newcomers to object-oriented programming immediately pick up on the idea of inheritance. It's intuitive because it is superficially isomorphic to the way we organize concepts into hierarchies. Unfortunately, it's often the case that this is the only abstraction that they end up using, so you end up with class hierarchies like:

Buzz
  BuzzImpl
    FizzBuzz
      BatchFizzBuzz
        BatchFizzBuzzWithFoo
        BatchFizzBuzzWithBar
        BatchFizzBuzzWithNeitherFooNorBar
      FizzBuzzThatSendsEmail
    BuckFizzBuzz
      BuckFizzBuzzWithFoo
...etc.

To fix, use composition rather than inheritance. Instead of having FizzBuzz inherit from Buzz, have it take a Buzz in its constructor.

link|improve this answer
show 2 more comments
feedback

Unused variables or fields.

Remove them. There are helper tools (different IDEs, checkstyle, etc.) which may inform you if you have some.

link|improve this answer
feedback

Variable Scope too large.

Global variables make it hard to keep track of which function modified something and when.

Refactor so that variables exist only within a function. Functions should pass information to each other via arguments and return values.

link|improve this answer
show 3 more comments
feedback

Putting in a "temporary" fix.

Temporary fixes have a funny way of becoming permanent because you never seem to have the time/inclination/memory to go back and fix them.

If you're going to fix something, fix it the right way the first time.

If it seems like it will be a huge undertaking to change it then maybe you need to re-evaluate why it needs to be changed. If it's unavoidable that it must be changed then put in the best fix that you can in the time allotted and assume that it will be permanent (because it will be).

link|improve this answer
feedback

Wrong spelling of class and method names. Look up in a dictionary if not sure or use plugin in your IDE to check spelling for you.

link|improve this answer
show 1 more comment
feedback

Using magic numbers for return values.

int orderID = DAL.GetOrderIDForUser(1);

if(orderID == -1) 
    ShowNoOrdersPage();
else
    ShowOrder(orderID);

It is just a matter of time before you end up with a -2 or -3.

link|improve this answer
1  
If the magic, out-of-band numbers are encapsulated in an enum, fine. As literals, they smell. – George V. Reilly Apr 8 '09 at 7:34
show 2 more comments
feedback

This is from "Practical Common Lisp"

A friend of mine was once interviewing an engineer for a programming job and asked him a typical interview question: how do you know when a function or method is too big? Well, said the candidate, I don't like any method to be bigger than my head. You mean you can't keep all the details in your head? No, I mean I put my head up against my monitor, and the code shouldn't be bigger than my head.

link|improve this answer
show 2 more comments
feedback

Gratuitous (unnecessary) use of multithreading.

I've taken over many multithreaded applications, and I never needed a code smell to know there was a problem. Multithreaded applications are usually incredibly unreliable, and fail frequently in impossible-to-reproduce ways. I can't count the number of times I've seen an application start the execution of a long-running task on a separate thread, and then go into polling mode on the main thread (usually using Thread.Sleep(n)) and wait for the long-running task to complete.

link|improve this answer
1  
Just a counter-example: Putting a long task into it's own thread can be useful if it allows the main thread to process windowing messages, and report status/progress more correctly. It can still be tricky to hand off the messages between threads correctly, though. – deemer Sep 23 '08 at 14:37
feedback

With database access

String concatenation, specially used for giant prepared SQL-statements, when there are lines like:

String select = "select ..."
// Lots of code here
select += "and c.customer_id = ? "
select += "and da.order_id in (?, ?, ?)"

And worse, then tracking the position of the index:

preparedSt.setInt(++cnt, 15);
preparedSt.setString(++cnt, 15);

With objects properties

Repeatedly accessing beans or value objects properties like this:

customer.getOrders().get(0).getPaymentDetail().getAmount();

In very simple boolean logic

Seeing nested 'ifs' like this when single-level if's or a switch statement will suffice:

if (cond1) {
    /* Something */
} else {
    if (cond2) {
        /* Something else */
    } else {
        if (cond3) {
            /* Something else, again */
        } else {
            /* And goes on... */
        }
    }
}

Using two boolean variables to refer to a simple, unique condition, that can be deduced just by one of them:

boolean finished, nextIsPending;
if (task.isRunning()) {
    finished = false;
    nextIsPending = true;
}
link|improve this answer
show 3 more comments
feedback

for index 0 to len-1 style looping over a list in languages where iterators exist.

link|improve this answer
4  
This isn't a code smell. This depends heavily on language, performance requirements and culture. – Quibblesome Sep 22 '08 at 14:13
3  
As the question says, a code smell means you have to look closer. Generally it is better to use iterators for readability reasons. This does not mean you should never manually iterate, just means you should be cautious about doing so. – Guvante Sep 24 '08 at 18:22
6  
Of course, you would probably prefer for (mytype<myparam>::const_iterator it = object.begin(); it != object.end() ++it), right? :D – user51568 Jan 9 '09 at 13:03
5  
Languages have idioms. Those idioms should be the preferred style. – George V. Reilly Apr 8 '09 at 7:36
1  
In C#, using the for loop is significantly faster than the foreach statement. Also, deleting an item using the foreach loop is not allowed, making the use of the for loop mandatory. – Marcel Jan 11 '10 at 9:46
show 4 more comments
feedback

Code Smell (noun)

This is a general criticism of poorly written or poorly designed software.

Example usage: "I was disappointed when I saw the source code. Everything basically works, but that code smells".

There are a lot of reasons why software might qualify as "smelly". People have listed quite a few specifics here.. Things like having overly complicated data structures, global variables and goto statements. But while these are all symptoms of smelly code, the truth is that there isn't a hard and fast rule. In programming, any specific problem could be solved a handful of ways, but not every answer is as good as the next.

Some basic principles

We value code that is easy to read. Most programmers will probably spend the majority of their time reading and editing existing code, even if it is code that they wrote themselves.

Along the same lines, reusable code is also considered valuable. This doesn't mean that code is copied and pasted.. It means that code has been organized into a logical system, allowing specific tasks to be performed by the same piece of code (with maybe just a few differences each time, like a value in each calculation).

We value simplicity. We should be able to make single changes to a program by editing code in one place, or by editing a specific module of code.

We value brevity.

Smelly code is hard to read, hard to reuse, hard to maintain, and is fragile. Small changes may cause things to break, and there is little value in the code beyond its one time use.

Code that simply "works" isn't very difficult to write. Many of us were writing simple programs as teenagers. On the other hand, a good software developer will create code that is readable, maintainable, reusable, robust, and potentially long-lived.

link|improve this answer
feedback

Classes or structs with lots of member variables.

A class or struct with more than about a dozen member variables probably hasn't been correctly factored into sub-components/classes.

eg:

class Person
{
    string Name;
    string AddressLine1;
    string AddressLine2;
    string AddressLine3;
    string Addressline4;
    string City;
    string ZipCode;
    string State;
    string Country;
    string SpouseName;
    string ChildName1;
    string ChildName2;
    string ChildName3;
    int Age;
    // and on and on and on
}

Should be:

class Address
{
    string[] AddressLines;
    string ZipCode;
    string State;
    string Country;
}

class Person 
{
    string Name;
    Address Address;
    Person Spouse;
    Person[] Children;
    int Age;
}

And this is just one contrived example.

link|improve this answer
show 1 more comment
feedback

C# specific: use of ref keyword.

Often makes program behavior unclear and complicated, can cause unpredicted side effects.

Consider returning new value rather than modify existing one i.e. instead of:

void PopulateList(ref List<Foo> foos);

use

List<Foo> GetListValues();
link|improve this answer
1  
This is usually a bit harder than your example. Mostly ref keywords are used to return more than one value. The out keyword is usually a bit clearer (only returns a value and doesn't pass it in) but it still smells. But this is a language problem as well as a code smell. I'd like python-ish tuples. – Mendelt Sep 22 '08 at 12:32
1  
Ref is important for passing value types. You don't need ref to append to a List<>, but you need it to efficiently pass a struct{} – Dave Moore Feb 16 '09 at 10:55
show 7 more comments
feedback

Returning more data that needed

Example:

List<Foo> Foos; // returns List<T> to provide access to List.Count property

Often this leads to misuse of data structures and unwanted data modifications.

Consider providing as much data as needed.

IEnumerable<Foo> Foos;  // Returns iterable collections of Foos.
int FooCount; // Returns number of Foo objects.
link|improve this answer
1  
Hear hear! This is a source of very subtle bugs and a bad code smell IMHO. – Mike Sep 23 '08 at 13:57
2  
You shouldn't return anything writable if you don't accept alien writes. Wrap into read-only collection as appropriate. – Ilya Ryzhenkov Sep 24 '08 at 19:41
show 1 more comment
feedback

Excessive use of code outlining

It's the new big. People use code outlining to hide their behemoth classes or functions. If you need any outlining at all to read your code, it should be a warning sign.

Consider the following:

  • Extract all types into their own file
  • Refactor the main class until it's small enough
  • You can use the partial keyword (C#), or any equivalent mechanism, in cases where you have to implement a lot of interface methods, or expose a lot of events
link|improve this answer
show 1 more comment
feedback

Overuse of casting

Lots of casting between (potentially) unrelated types makes it difficult to tell what type variable pointed to actually is, and is usually a sign that someone is trying to be too clever with memory usage. Use a union if you really want to do this.

link|improve this answer
feedback

Magic Strings

I've seen Magic numbers mentioned here more than once and I wholeheartedly agree. One often overlooked smell I haven't seen mentioned is Magic Strings.

Example:


public string GetState()
{
  return "TN";
}

Solution:


public string GetState()
{
  return States.TN;
}

Always be weary of code that is working with hard coded string data just as you would with hard coded numeric data. Consider making the string a constant variable with a comment explaining what it represents as a minimum. There is a really good chance that this should actually be in an Enumeration.

Side note: It's not technically a smell but it greatly annoys me to see something like this as well:


if(0 == foo)
{
  DoSomething();
}
link|improve this answer
4  
if(0 == foo) This is a good practice for C++ developer. Because you don't want to accidentally set a variable in an if statement if you leave off the extra =. Remember C++ does not check to make sure all if evaluate to a bool. C# does. – David Basarab Jul 21 '09 at 15:22
1  
I Agree with the problem, but i think the solution might benefit from adding a note about localization. – TokenMacGuy Jul 26 '09 at 4:09
feedback

Smell: Operator overloaded to perform a non-intuitive function. e.g. operator^ used to convert a string to uppercase.

Problem: Very likely clients will use it incorrectly.

Solution: Convert to a function with a sensible name.

link|improve this answer
show 1 more comment
feedback

Interface overuse. Any time anyone thinks that interfaces are the answer to all their problems and decides to use the same pattern everywhere, there is something wrong at a low level.

Time to sit these people down and make them understand that they can code simple, clear classes without interfaces too.

link|improve this answer
1  
Use a different test framework. – Apocalisp Sep 22 '08 at 17:25
1  
To be fair, how do you do your dependency injection if you can't mock out the complex classes? I admit I'm not a fan of creating an interface whose only implementations are the production class and the mock object, but if the alternative is no tests then I'll live with the extra interface. – richq Sep 22 '08 at 21:08
3  
I dissagree. In most cases usage of interfaces is a sign of decoupling whereas inheritance is a bad smell of not knowing what it implies. Even tag interfaces are good in many cases (you wouldn't force anyone to inherit from your base class just to be able to say "if it's derived from this class then I'll go ahead - otherwise do nothing", right?) – Matthias Hryniszak Aug 8 '09 at 19:46
show 6 more comments
feedback

Comments often make code smell. Steve McConnell said it before me, but

  1. Comments on functions and code can almost all be eliminated by choosing names and types well.
  2. Comments on data are often helpful. Beginners can be told to comment every type definition and variable declaration. This is overkill but is a good rule of thumb and is way better than commenting code.
  3. Even better comments are just ones that describe the representation invariants of data and say what abstraction the data is intended to represent.
  4. If the representation invariant is not completely trivial, the best documentation is an internal function which validates that the data actually satisfy the representation invariant. Good example: ordered binary trees. Better: balanced, ordered binary trees. In this case you write the code to check the invariant and the comment just says that every value of the given type satisfies the invariant.

Summary: strive to move information from comments into code!

link|improve this answer
show 1 more comment
feedback

Side-effecting getters:

public Object getMyObject() {
     doSomethingThatModifiesSomething();

     return myObject;
}
link|improve this answer
show 4 more comments
feedback

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