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

1 2 3 4 5 6

A quick search suggests that this post is the first identification of the code smell "Intelliscents":

Extravagantly roundabout code bespeaking the typist's lack of familiarity with the classes and established idioms of some .net namespace, and his/her reliance on Intellisense to solve a problem at hand.

And my code is redolent with (of?) it.

link|improve this answer
feedback

Structure or class with a dozen or more member fields. There is probably not a coherent abstraction here. To remove the smell, break the structure or class into pieces. A good source of ideas is Raymie Stata's dissertation..

link|improve this answer
feedback

Second-guessing assertions.

Ran across this recently:

assert(vector.size() == 1);
for(int i = 0; i < vector.size(); ++i) {
    do_something(vector[i]);
}

If you're asserting that there's only one item in the vector, you don't need the loop:

assert(vector.size() == 1);
do_something(vector.front());

I don't want to go into lots of boring detail; there was a good reason for having the vector for other cases, but in this branch of the code it should have always had size 1.

Obviously it's not a hard and fast rule, but to me it increases the complexity of the code (introducing a loop, another level of indentation) when you're saying that you don't ever expect to need it.

link|improve this answer
show 2 more comments
feedback

eval('some PHP/JS/Perl code')

Common to most scripting languages, and useful occasionally. But nearly every case i've seen in the real world was an ugly, bug-ridden example of arbitrary code injection just waiting to happen. If you see code that's using it, it's almost certainly doing something it shouldn't need to be doing. (The sole exception that springs to mind is dynamically generated classes -- and even then, i'd at least look at other options first.)

The fix:

Don't execute strings.

The code inside your evaled string can almost always be converted into real, executable code. If it can't, then question your intentions -- executing code from a database (for example) is almost always a horrible idea.

link|improve this answer
feedback

smell: Unnecessary recursion

why: You've guessed it --> risk of stack overflow (had to get that one in)

solutions:

1) If you can, rewrite the recursive routine as an iterative routine, for example using divide and conquer techniques.

2) If not, examine the stack frame usage and try to minimise, for example by changing from breadth first to depth first analysis on a tree.

link|improve this answer
3  
The joke is good. Removing recursion is not necessarily good. – user51568 Jan 9 '09 at 13:31
show 1 more comment
feedback

Lifecycle methods in classes

class Life {
  private boolean initialized = false;
  public void init() {
    try {
    // ...
      initialized = true;
    } catch (XXXException e) {
      // ...
    }
  }
  public void doSomething() {
    if ( !initialized ) {
      throw XXLException(...);
      // instead call init() and continue
    }
    // ...
  }
}
link|improve this answer
show 4 more comments
feedback

Here's a somewhat obvious one, but I'd had to put up w/ it a few times...

You check out code from source control.... and it doesn't compile. Drives me crazy.

link|improve this answer
feedback

enums behaving like booleans

Sample:

enum SwitchState { On, Off }
if (x == SwitchSteate.On) ...

Consider using boolean variables instead of enums in such cases.

bool isTurnedOn = ...
if (isTurnedOn) ...
link|improve this answer
4  
@shoosh I agree with all but the last part of your comment. Start with on and off, and later you might add undefined or unknown. Gender is an interesting example of something similar. At one company we originally assumed gender was only male xor female but we live in a more complex world than that... – Ryan Jul 30 '09 at 22:17
1  
An enum is much more descriptive than true or false. If used as a method parameter, enums are much easier to read than true/false! – Arne Burmeister Sep 22 '10 at 7:30
show 3 more comments
feedback

Methods returning constants


  • The Smell

You see a function that always returns the same thing.

  • Additional observations

There's lots of classes implementing those methods just for other parts of the code to get the right value. Sometimes even constructors are being defined just to call the base/super/inherited constructor to pass on those constant parameters.

  • The solution

Change the method to return a value from a private field initialized in constructor and use the Factory pattern to construct the objects (for example using DI as a mega Factory pattern implementation in this case). This makes the inheritance structure in most cases obsolete.

link|improve this answer
3  
That is not a guaranteed code smell. – Paul Nathan Aug 28 '09 at 17:21
feedback

Break and Continue are the same as GoTo

One should be able to look at the head or tail of a loop to immediately be able to tell under what conditions it terminates.

What to do: Use descriptive (boolean) variables instead of a direct break/continue and test them in the appropriate place (head/tail) of the loop.

link|improve this answer
2  
@petr k: Actually, I disagree slightly. Break and Continue can affect readability and maintainability...... It can greatly improve it! :D – Craig Young Jul 13 '10 at 18:37
2  
break and continue only allow you to jump to specific locations (either to the end of the loop or beginning of the loop) whereas goto allows you to jump anywhere. They are clearly not the same. – gablin Sep 22 '10 at 9:41
show 2 more comments
feedback

If statement without corresponding else

Not all if statements need an else, but when one isn't present you should check if it really should be there. If one program state needs special handling, often the opposite state does too.

Example where an else may be necessary:

if (teacher != null) {
    addStudents(teacher, period, students);
}

// Else?
else {
    // Why is `teacher` null? Is this an error state?
    // Will the students be 'lost' for this period?
}

Solutions:

  • Add an else block with the correct logic
  • Change the if check to an assert
  • If no else is necessary, but this isn't immediately apparent, add an empty else block:

    } else {
        // Nothing to do here
    }
    
link|improve this answer
2  
I wouldn't view this as a smell, I often use exactly this for Guard Conditions en.wikipedia.org/wiki/Guard_(computing) – Rob Cooper Sep 22 '08 at 16:33
1  
Totally agree with Rob Cooper. Guard conditions are great for keeping things neat before the 'meat of the code' comes. – Camilo Díaz Sep 22 '08 at 17:24
1  
I didn't mean to imply they can't be used that way. Code smells are indicative of something that may be wrong, not necessarily that something is wrong. There are plenty of uses for if-no-else statements, but there are also situations where the lack of an else is often a bug. – Eric Burnett Sep 22 '08 at 19:12
show 3 more comments
feedback
1 2 3 4 5 6

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