vote up 244 vote down star
267

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 'onebyone' 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 'onebyone' Jessop Sep 27 '08 at 17:47
show 9 more comments

152 Answers

1 2 3 4 5 6 next
vote up 297 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
25  
I do believe this can be taken too far though. I worked on one program that the methods were so small and generic that it seemed like a someone fired a shotgun at the classes and you were reading the little pieces that remained. It was tough to follow the logic. – bruceatk Oct 16 '08 at 0:44
2  
If your language supports it, it's a good idea to use nested or anonymous functions so that parts of the logic aren't exposed to the rest of the class or global scope. (C and PHP have this problem). – too much php Feb 5 at 0:28
show 3 more comments
vote up 292 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
30  
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
14  
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
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 at 12:59
2  
Uri, I agree. Here's a thought on a new tool... It would be great if there were VCR like controls...rewind, pause, forward...so you can playback the changes. Basically, I never understood why undo histories have to die when rebooting. Save to file and persist on reboot...and let it integrate with svn. – joedevon Jun 13 at 3:12
show 21 more comments
vote up 255 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
1  
There is an open source tool in Java that helps a lot in finding this pattern: pmd.sourceforge.net/cpd.html – Camilo Díaz Sep 22 '08 at 17:20
show 6 more comments
vote up 191 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
12  
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
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 175 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
1  
I wish i could vote 2x for this :) – anbanm Sep 22 '08 at 12:17
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
19  
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
15  
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 149 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
15  
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 128 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
5  
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
2  
If you're programming in perl that is more or less your only choice :D – Anders Rune Jensen Dec 16 '08 at 19:30
show 3 more comments
vote up 115 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
2  
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 '08 at 20:54
8  
This code makes my nostrils want to leave my face. – RodgerB Sep 23 '08 at 6:56
52  
"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 '08 at 19:10
2  
OK, I admit it...I like the "else if" control structure, and routinely have them two or three deep in my PHP code. What's the better way to implement the same logic? – flamingLogos Oct 4 '08 at 8:11
11  
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
show 14 more comments
vote up 109 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
18  
What is your code is actually doing something that's part of a really complex algorithm? – Wouter Lievens Feb 4 at 9:46
2  
@Wouter: It should still only take 15 seconds to understand what it does. An algorithm that complicated should still, if refactored properly, have not only a simple purpose but also should be broken up into simple functions. – Brian Mar 23 at 20:38
3  
@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
6  
I'll admit it: It took me more than 15 seconds to understand the quicksort algorithm. Does that mean I shouldn't use it any more? – nikie Aug 27 at 8:11
1  
-1, You can't understand a piece of code in isolation of what it's part of. I dare you to spend not 15 minutes but 15 hours starting at the source code for a project like git and being able to understand what it does. – hasen j Aug 28 at 18:25
show 8 more comments
vote up 108 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
show 2 more comments
vote up 105 vote down

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

link|flag
5  
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 92 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
1  
@mxg, is Donald Knuth your friend? – Lev Oct 4 '08 at 20:31
8  
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 '08 at 13:39
2  
There is also the "premature optimization is the root of all evil is the root of all evil" thing. If you leave optimization for later, it may be too late when you find out. – luiscubal Jun 15 at 20:32
1  
Besides, doesn't a decent modern compiler know how to handle a lot of bit-shifty optimizations anyway? – Jeremy Powell Jul 16 at 13:59
1  
@Jeremy exactly, a compiler will pretty much do away with any sort of bit operation optimization for arithmetic. Of course, I don't think a compiler will use the xor swap for ya :-p – Junier Jul 26 at 4:32
show 5 more comments
vote up 91 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 83 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 82 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
4  
This point is good. But it would benefit enormously from an example. – Max Howell Oct 22 '08 at 0:24
show 4 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
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
17  
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 '08 at 20:09
4  
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
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 '08 at 6:28
show 19 more comments
vote up 70 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
10  
Worse still when the variable name has a negative connotation if (NotSystemUpdatable == false) ... – onedaywhen Oct 14 '08 at 15:20
6  
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 '08 at 3:11
7  
and also !IsWinter is not the same as IsSummer or at least if Winter is meant to be one half of the year and summer the other. !IsWinter could be IsSummer but also IsFall or IsSpring... – Eugenio Miró Apr 5 at 19:48
1  
I disagree with the single negatives comment. Your code snippet is quite trivial. If !IsWinter does not equate to IsSummer. It equates to IsSummer or IsAutumn or IsSpring. In such a case the !IsWinter is much tighter code that is easy to comprehend. – Jason Irwin Aug 17 at 2:03
show 9 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 49 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, it's 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
21  
You can also get arround this by creating an enum. myFile = CreateFile("foo.txt", FileType.Temp); – Martin Brown Oct 31 '08 at 9:57
1  
I like the enum better, too many functions can clutter things quite a bit. But it's a balancing act. – Anders Rune Jensen Dec 16 '08 at 19:36
8  
+1 for enum +1 for languages with named parameters! – chickeninabiscuit Jan 15 at 5:39
show 7 more comments
vote up 48 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 2 more comments
vote up 47 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
6  
using double for money is especially bad. – grom Sep 29 '08 at 6:31
8  
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 46 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 5 more comments
vote up 42 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
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
18  
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 40 vote down

Inappropriate Intimacy

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

Some suggestions how to refactor/avoid:

link|flag
show 3 more comments
vote up 36 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
1  
My favourite variation on this was along the lines of: if (((X==true) && (Y==true)) || ((X==false) && (Y==false)))... – Roddy Sep 28 '08 at 19:12
10  
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
6  
The code smell here is the use of flag variables, not testing for equality with true (or false). What is there for the compiler to "fix" in this case? I'll never understand why some people get so worked up over this. – Christopher Jun 4 at 14:45
1  
@Christopher: The smell is the comparison with true. Flag variables are fine, but why use 'if(someVar==true)' when 'if(someVar)' would be enough. The variable name should be good enough that you can simply read it as nearly English. Similarly, for tests against false, you should just use !someVar. – krdluzni Aug 28 at 18:42
show 6 more comments
vote up 33 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
6  
+1 for the examples; i'm sure sure about the general rule. – stefan.ciobaca Jan 9 at 13:34
1  
i've been programming for about 30 years now, always questioning my style, and still sometimes adjusting it. This rule of testing for the exception came only recently to me after wondering for years how to best check for errors in a function's code. – Thomas Tempelmann Jan 29 at 21:15
3  
This is not always a good candidate for a "smell". Testing for a good condition accomplishes two things: (1) keeps the most likely (good) code branch in the processor's pipeline, so the most common case executes faster and (2) avoids complex flow control (i.e. multiple returns, which are bad for performance, since they pollute prefetcher's cache). There are still tasks left where low-level performance is important, but not critical enough to go down to the assembly level :) – Rom Jun 9 at 8:06
show 1 more comment
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 7 more comments
vote up 30 vote down

Treating Booleans as magical, unlike other values. When I see

if (p)
  return true;
else
  return false;

I know I'm seeing a rookie coder and prepare myself accordingly. I strongly prefer

return p;
link|flag
show 3 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
1 2 3 4 5 6 next

Your Answer

Get an OpenID
or

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