vote up 250 vote down star
272

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
5  
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
2  
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 9 more comments

152 Answers

vote up 1 vote down

Stinky Commenting


Comments should:

  • Say what the code is trying to achieve, not how it is doing it.
  • Convey something that the code cannot.
link|flag
show 1 more comment
vote up 295 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
32  
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 '08 at 0:18
2  
For finding old code, a commit database is a great solution. dschneller.blogspot.com/2007/09/… – chuckrector Sep 23 '08 at 1:05
15  
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 '08 at 0:06
2  
Sometimes that commented out code is the best way to comment the new code, so you don't repeat the madness. – bruceatk Oct 16 '08 at 0:46
5  
It's a code smell. In a lot of cases it shows a lack of confidence in the change and knowledge of the code. Someone who has read through all the code and completely understands the change and knows it is a good change will delete any unecessary code. – Quibblesome Jan 9 '09 at 12:59
show 21 more comments
vote up 20 vote down

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|flag
show 12 more comments
vote up 9 vote down

Excessive use of code outlining

It's the new big. People use code outlining to hide their behemot 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|flag
show 1 more comment
vote up 9 vote down

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|flag
show 2 more comments
vote up 86 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 an ORM and a 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
2  
Interfaces should be preserved where they reduce coupling between sub-system boundaries. They make unit test testing feasible. If you can't find sub-system boundaries do not remove interfaces: Either the code is a big ball of mud (pattern) Or you aren't competent to perform this surgery. – Tim Williscroft Sep 29 '08 at 0:37
1  
I would vote this +5 if I could. I see this on a very regular basis in the regular course of my job. – Greg D Feb 25 at 0:20
show 2 more comments
vote up 93 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") ...)

Edit

I would agree with those commentators who say leave it up to the JIT to optimise the call. This will work in most cases. However, this became a bit of a problem for me in a framework where some getters did not simply pick up a property but in fact performed a hash table lookup or even disk or network action (can't remember which now). I guess the JIT can't do much there.

My point is that you don't always know what the getter does. Perhaps a naming convention such as getX for properties and fetchX for other actions might help. I just think getting/fetching a value once and then working with a copy of the value avoids the problem (unless you really know what is going on in the getter, of course)

link|flag
4  
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 '08 at 2:55
6  
@Daok We can introduce another code smell then: relying on compiler optimization instead of writing proper code – Sklivvz Sep 23 '08 at 6:38
1  
Beware, i have seen (bad)code, where the "getter" function had side effects. So optimizing the code resulted in new bugs. – Gamecat Sep 24 '08 at 21:05
2  
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
2  
This is also an example of Time of Check Time of Use (TOCTOU) lurking bug. – johnny May 18 at 7:07
show 10 more comments
vote up -1 vote down

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|flag
show 3 more comments
vote up 1 vote down

switch statement with number of cases <= 2

Usually happens when using boolean-like enums ( enum { Off, On } ).

Consider using if-else statements

link|flag
show 3 more comments
vote up 52 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
1  
Or "Do" or "Run", and sometimes "manager". – Wedge Sep 22 '08 at 20:00
1  
Manager class is not just a cause of bad code, but also a cause of bad workplaces. – RamyenHead Aug 12 at 17:34
show 10 more comments
vote up 30 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
7  
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 Steele Sep 22 '08 at 13:13
1  
Using polymorphism or function arrays everyplace there could be a switch is a bad overenginnering habit. IF you have the same switch statement scattered everywhere, THAT should be a warning. – Coincoin Sep 22 '08 at 13:17
2  
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 '08 at 13:59
show 8 more comments
vote up 11 vote down

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|flag
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 at 10:55
show 8 more comments
vote up 27 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
2  
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
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 '08 at 13:56
2  
@ 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
2  
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  
@Martin, @Echostorm - In most languages, gotos are definitely more efficient than exceptions. – Andrei Krotkov Apr 4 at 22:13
show 8 more comments
vote up 17 vote down

Large Classes

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

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

Conditional spree

Complex behaviour implemented by intricated if...then...elseif... blocks or long switch...case copy/pasted all over the class(es).

Suggested refactoring: Replace Conditional with Polymorphism.

NOTE: overusing this strategy is also "code smell".

NOTE2: I love the Kent Beck quotation from one of his books on Extreme Programming.

If it smells change it (Grandma Beck on childrens rearing).

(or something like that, I don't have the book handy right now).

EDIT: For a comprehensive list have you considered this post on Coding Horror?

link|flag
vote up 17 vote down

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|flag
2  
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
2  
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 at 22:21
show 7 more comments
vote up 2 vote down

Configurable constants included in the code

link|flag
show 3 more comments
vote up 40 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
19  
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 '08 at 12:01
8  
I would say that such comments are deliberate code smell. They are meant to say "fix this when you have time". – slim Sep 22 '08 at 13:12
8  
hacks aren't code smells. A hack that takes 2 lines of code's equivalent might well be 50 code files to perform elegantly. – Quibblesome Sep 22 '08 at 14:14
show 16 more comments
vote up 8 vote down

Inconsistent enum members.

I know 2 variations of this problem:

1) enum members that actually belong to different domains (good example is .NET BindingFlags),

2) Tricky enum members:

enum MathOp { Plus, Minus, Empty }

This often happens when enum values used in UI.

Cure:

1) Group enum values into different logically related enums.
2) Don't mix logic and presentation

link|flag
show 1 more comment
vote up 151 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
3  
A catch block could legitimately suppress an exception, but then it needs a comment explaining why it is doing so. – Johan Sep 22 '08 at 12:02
1  
Yes! I got burned by this just a few weeks ago. One of the hardest debug sessions in my life. You see, the try-block was very very long... – Antti Rasinen Sep 22 '08 at 12:16
16  
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 '08 at 13:43
show 10 more comments
vote up 131 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
7  
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 '08 at 13:00
1  
Problem with those peoples is that they assume good APIs. If you have ever programmed AT-megas in C, you know why you need to comment what you do and why. (It mostly looks like DDRB |= (1 << foo)|(1 << bar); with horrendous side effects) – Tetha Sep 22 '08 at 13:57
6  
I disagree with the no comments school of thought. It will suggest everyone drop the comments, think they are actually writing understandable code ( which everyone does of course ??? ) and then we will all be completely confused when we go to read it. – Brian G Sep 24 '08 at 15:10
4  
If you're programming in perl that is more or less your only choice :D – Anders Rune Jensen Dec 16 '08 at 19:30
1  
I disagree with this to some extent. If I'm using someone else's code, or fixing it, I don't always want to have to go through it line by line to figure out what it's doing. I prefer to have comments on methods describing what they do, and if the method is complex, a comment on each section describing what it's doing and why. – notJim Nov 19 at 4:56
show 2 more comments
vote up 108 vote down

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

link|flag
6  
Should an exception be made in the case of something like a state machine? To my mind, these are most effectively and clearly expressed as mile-long switch statements. – fluffels Sep 30 '08 at 10:16
show 5 more comments
vote up 48 vote down

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

For an example of 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
show 6 more comments
vote up 50 vote down

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

link|flag
2  
+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
show 3 more comments
vote up 48 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
7  
using double for money is especially bad. – grom Sep 29 '08 at 6:31
9  
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
show 5 more comments
vote up 72 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.

A dependency injection framework, such as Guice, can make this easier. The DI framework can be configured to create only one instance of the class and pass it as a constructor parameter to all classes which use it. In Guice you would annotate the singleton class with @Singleton and that would be it.

link|flag
1  
@Rob Cooper: Smelly code is not necessarily bad code, but it is code that you should investigate closer to decide whether this particular use of the smelly code is okay. You need a really good reason to use global state. Ergo: any use of static variables is a code smell. – Rasmus Faber Sep 22 '08 at 12:02
4  
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 '08 at 12:15
19  
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 :) – Florian Sep 22 '08 at 20:09
6  
So you're saying I should pass an instance of my logger to every class in my app? – jpeacock Sep 23 '08 at 0:35
2  
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 '08 at 6:28
show 18 more comments
vote up 10 vote down

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

link|flag
3  
Languages have idioms. Those idioms should be the preferred style. – George V. Reilly Apr 8 at 7:36
show 7 more comments
vote up 179 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
2  
Except for when it is appropriate - i,j,k are great for small loops. x,y,z are great for coordinates in small functions. But when in a larger setting, sometimes its better to say which x or y it is. – DGM Sep 22 '08 at 14:58
2  
@Wedge: you should search&replace only in that region (method/function), not in the whole file or project. – Cristian Ciupitu Sep 23 '08 at 13:11
20  
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 '08 at 0:26
16  
The name should be as long as the distance you are from it's declaration, so I agree with Ali. – bruceatk Oct 16 '08 at 0:52
3  
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 '08 at 0:14
show 9 more comments
vote up 194 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
2  
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 '08 at 14:22
1  
Don't pass any then, just use member variables. :) – bruceatk Oct 16 '08 at 0:50
16  
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 '09 at 2:25
1  
Whenever I have multiple parameters, I ask any of them should be a new class. Even with one parameter, I ask if that parameter should be the 'this'. – Jay Bazuzi Feb 14 at 17:52
20  
Alan Perlis said this quite beautifully: "If you have a procedure with 10 parameters, you probably missed some." – Gorpik Feb 16 at 8:06
show 8 more comments
vote up 4 vote down

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|flag
1  
Use a different test framework. – Apocalisp Sep 22 '08 at 17:25
show 8 more comments

Your Answer

Get an OpenID
or

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