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

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.

See also these related questions on SO:

link|improve this answer
71  
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
7  
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 '09 at 0:28
1  
@bruceatk: agree. It is a code smell, but not the most important by far. Probably it's the one we can all agree on. – peterchen Mar 11 '10 at 14:57
2  
Uncle Bob recently tweeted "Big methods are where classes go to hide." I think that's one of the finest statements about large methods that I've read in a long time. – realistschuckle May 5 '11 at 20:35
2  
On the flipside, I have a co-worker who makes a habit out of one-line methods that just call other methods. Tracing this code drives me insane as the call-stack gets huge. Even if you are conscious of this, it's still easy to overdo it. Often times I'll create another method with the anticipation that certain amount of logic will be implemented within to provide my desired output but it ends up only being one or two lines, and the method only gets called once. It's easy enough to refactor this, but that means you can't forget and/or run out of time. – alexD Jun 23 '11 at 6:21
show 4 more comments
feedback

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|improve this answer
81  
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
6  
For finding old code, a commit database is a great solution. dschneller.blogspot.com/2007/09/… – chuckrector Sep 23 '08 at 1:05
32  
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
11  
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
20  
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 22 more comments
feedback

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|improve this answer
2  
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
11  
I think this should be the #1 code smell. Long methods can be refactored easily; duplicated code is more of a pain, especially if the code isn't exactly the same but almost. Also, long methods can happen to anyone gradually, but copy-and-paste indicates that you're dealing with an extremely poor programmer; it's really fundamental to programming that whenever you have more than one instance of the same set of lines, you put it in a function. – Kyralessa Sep 25 '09 at 2:38
1  
To balance: Making small pieces of code reusable usually triples its complexity. – peterchen Mar 11 '10 at 14:59
1  
@kyralessa: It seems this IS the number one smell: It's the only answer among the top rated (300+) that has ZERO negative ratings. Definition of consensus. – Nikolai Ruhe Oct 29 '10 at 16:11
show 6 more comments
feedback

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|improve this answer
3  
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
65  
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
46  
Alan Perlis said this quite beautifully: "If you have a procedure with 10 parameters, you probably missed some." – Gorpik Feb 16 '09 at 8:06
2  
7+ ??? I'd put the margin by 3+ at most! After that it's not really useable anyways. – Matthias Hryniszak Aug 8 '09 at 19:12
5  
@recusive: and all the silly 35+ persons who upvoted that completely silly comment... Refactoring 10 parameters+ to a class is much cleaner and can be done in a very easy to read way. Ever heard of what a "fluent interface" is? It is a specific application of the builder pattern. See my answer with 22 upvotes here for enlightenment about fluent interfaces and to understand why your comment and the 35 people who voted up your comment are COMPLETELY WRONG stackoverflow.com/questions/2848938 This is getting more and more used in serious APIs (like the Google ones). – SyntaxT3rr0r Jun 7 '10 at 19:38
show 15 more comments
feedback

Avoid abbreviations.

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

link|improve this answer
19  
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
52  
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
50  
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
4  
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
9  
I often use "for(int i = 0; i < SIZE; i++)". When short names are the convention, I think it is correct to use them. Every programmer knows what "i" means in the context of for statements. – luiscubal Jun 15 '09 at 20:25
show 14 more comments
feedback

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|improve this answer
11  
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
38  
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
3  
Somebody should have told this to Java designers so that they wouldn't encourage (effectively) this behavior by throws clause. – Mehrdad Afshari Apr 13 '09 at 15:22
5  
There's one extremly easy solution to this code smell - change the compiler! :D Java's compiler is the only one main stream compiler excesively hunting the programmer down to write useless code. – Matthias Hryniszak Aug 8 '09 at 19:15
2  
Empty catch/except blocks aren't code smells, they are code putrids. – Nick Hodges Nov 12 '10 at 0:33
show 9 more comments
feedback

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|improve this answer
21  
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
6  
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
27  
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
6  
If you're programming in perl that is more or less your only choice :D – Anders Rune Jensen Dec 16 '08 at 19:30
17  
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 '09 at 4:56
show 4 more comments
feedback

Pacman ifs

nested ifs

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

a severe stench emanates when a horizontal scroll bar appears

link|improve this answer
3  
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
14  
This code makes my nostrils want to leave my face. – RodgerB Sep 23 '08 at 6:56
126  
"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
32  
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 '09 at 6:47
5  
What is the point of such indenting? It does not reflect the structure of the code at all. – Glorphindale Feb 26 '10 at 5:49
show 17 more comments
feedback

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|improve this answer
16  
There's always that one piece of code with: #define FORTY_TWO (42) //no magic numbers! – hexium Nov 19 '09 at 4:39
3  
@hexuim I would also use your example as a code smell called 'using a preprocessor to extend the language.' That type of stuff makes me sick. There's a const type for a reason. – Evan Plaice Jun 8 '10 at 2:48
1  
@John Ferguson There's always the case where a pascal programmer who switched to C does something like '#define begin {' and '#define end; }'. Ironically, I'm actually working on a python preprocessor module (pypreprocessor) but it only supports non-value #define directives with #ifdef blocks. If it ever supports text replacement #define directives they'll be turned off by default. People are too tempted to do dirty and unnatural things with them. – Evan Plaice Jun 8 '10 at 9:02
show 5 more comments
feedback

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

link|improve this answer
15  
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
feedback

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|improve this answer
38  
What is your code is actually doing something that's part of a really complex algorithm? – Wouter Lievens Feb 4 '09 at 9:46
6  
@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 '09 at 20:38
5  
@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 '09 at 22:05
39  
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 '09 at 8:11
16  
-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 '09 at 18:25
show 14 more comments
feedback

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.

Example

var x = value;
if (x > y) doSomething();

x = someOtherValue;
if (x == 'Doh') doSomethingElse();
link|improve this answer
4  
This point is good. But it would benefit enormously from an example. – Max Howell Oct 22 '08 at 0:24
2  
Doesn't save any stack space. Any decent compiler that does flow analysis should be able to see when a variable is no longer used and replace it with another. Hell, the idea of "local variable" is no longer really relevant at the compiler level. There are 6 GP registers and some memory to spill into. – Fraser Dec 14 '09 at 3:23
5  
@Allyn, wrong. Reusing variables is always wrong. You're using the same variable for two different purposes. This makes the code harder to understand, and makes the code more difficult to refactor and otherwise edit. – Kyralessa Jan 15 '10 at 21:25
2  
If your method is so big that you find variable reuse helpful, then your method is too big. Refactor it (using e.g. Extract Method), and then you won't need to reuse variables. (Of course, if you're already reusing variables, you'll find it hard to refactor. That should tell you something about how bad it is to reuse variables.) – Kyralessa Jan 21 '10 at 21:48
show 6 more comments
feedback

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|improve this answer
2  
A friend of mine once said "Premature optimization is the root of all evil" I believe it's a true statement. – mxg Oct 4 '08 at 15:48
12  
@mxg, is Donald Knuth your friend? – Lev Oct 4 '08 at 20:31
21  
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
8  
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 '09 at 20:32
5  
Besides, doesn't a decent modern compiler know how to handle a lot of bit-shifty optimizations anyway? – Jeremy Powell Jul 16 '09 at 13:59
show 11 more comments
feedback

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|improve this answer
7  
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
22  
@Daok We can introduce another code smell then: relying on compiler optimization instead of writing proper code – Sklivvz Sep 23 '08 at 6:38
4  
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
5  
This is also an example of Time of Check Time of Use (TOCTOU) lurking bug. – johnny May 18 '09 at 7:07
4  
Your sample code isn't reading properties, it's calling methods. In languages that have first-class properties (e.g. C#), the convention is that a property getter shouldn't do anything particularly expensive, and should never have side effects. (If it violates those conventions, then that's a smell.) So reading a property repeatedly won't be a problem in the vast majority of cases. In the rest, profile, then fix. – Joe White Aug 28 '09 at 17:48
show 16 more comments
feedback

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|improve this answer
3  
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 '09 at 0:20
1  
Only if it damages readibility. – luiscubal Jun 15 '09 at 20:34
show 2 more comments
feedback

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|improve this answer
47  
Worse still when the variable name has a negative connotation if (NotSystemUpdatable == false) ... – onedaywhen Oct 14 '08 at 15:20
18  
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
26  
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 '09 at 19:48
2  
You ain't use no double negatives! – Yoo Aug 12 '09 at 17:26
7  
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 '09 at 2:03
show 9 more comments
feedback

Methods with unexplained 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|improve this answer
67  
You can also get arround this by creating an enum. myFile = CreateFile("foo.txt", FileType.Temp); – Martin Brown Oct 31 '08 at 9:57
6  
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
28  
+1 for enum +1 for languages with named parameters! – Ash Kim Jan 15 '09 at 5:39
2  
If you have to call an existing API that uses this style, you should introduce a local variable for clarity. bool isTemp = true; CreateFile("foo.bar", isTemp); – Doug McClean May 24 '10 at 19:24
1  
python, I love you! – Gabi Purcaru Aug 9 '10 at 21:13
show 16 more comments
feedback

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|improve this answer
9  
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
50  
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
20  
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
7  
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
17  
-1 for lumping the Singleton pattern with static variables. I agree that static variables should be avoided, or at least hidden via getter/setter at some appropriate scope. But using a Singleton is a perfectly viable design pattern, and the Gang of Four would agree. That doesn't mean it cannot be abused, but that's not the same thing as a code smell. – Matt Davis Aug 28 '09 at 17:39
show 19 more comments
feedback

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|improve this answer
1  
Or "Do" or "Run", and sometimes "manager". – Wedge Sep 22 '08 at 20:00
16  
Manager class is not just a cause of bad code, but also a cause of bad workplaces. – Yoo Aug 12 '09 at 17:34
show 11 more comments
feedback

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

link|improve this answer
41  
welcome to PHP :P – grom Sep 29 '08 at 6:32
2  
_yes, I HATE_IT when That m_happens; – johnc Dec 7 '08 at 9:27
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/cppguide.xml#Naming – Tom Apr 16 '09 at 6:14
1  
I really = WantTo(WantTo::Kill, new Sob(Sob::Create, mGoogleStyleGuide)); // pretty consistent and readable – iconiK Mar 16 '10 at 22:56
show 1 more comment
feedback

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|improve this answer
feedback

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.

...

Judging by the comments, an example is called for. Here's one I saw a couple weeks ago.

We have an application that processes Word document content. All through our app, we had string parameters that took file paths to those documents. We found a bug in one place where, due to a poorly-named parameter, we were passing in a file name rather than a file path, causing the app to look for the file (and not find it) in the default application path.

The immediate problem was the poorly named parameter. But the real problem was passing strings around. The solution was to use a class like this:

public class FileLocation
{
    readonly string fullPath;

    public FileLocation(string fullPath)
    {
        this.fullPath = fullPath;
    }

    public string FullPath
    {
        get { return fullPath; }
    }
}

Your first reaction may be that this is a class that hardly does anything. You're right; but that's not the point. The point is that now instead of

public void ProcessDocument(string file)

we have

public void ProcessDocument(FileLocation file)

As long as we're constructing FileLocation objects correctly in the one place that generates them, we can pass them through the rest of the app with no worries, because now we can't possibly confuse them with file names, or directories, or any other type of string. This is the most fundamental reason to correct primitive obsession.

link|improve this answer
24  
using double for money is especially bad. – grom Sep 29 '08 at 6:31
18  
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 '09 at 16:35
8  
Object Obsession is equally bad. i.e. insisting on an object for everything, even for instance, when an int would clearly suffice. – hasen j Aug 28 '09 at 18:39
show 6 more comments
feedback

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|improve this answer
8  
+1 for the examples; i'm sure sure about the general rule. – user51568 Jan 9 '09 at 13:34
2  
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 '09 at 21:15
8  
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 '09 at 8:06
2  
@iconiK: I think you meant "billion" rather than "million". GCC (or any other compiler) does not optimize it away since it doesn't know which branch you care about more. And the missed cache hit costs significantly more than 10 cycles: around 100, depending on CPU vs. memory speed. In tight loops it's a lot. In video, 3d, audio, scientific or similarly heavy calculations, it's better to keep this stuff in mind. Also, don't call other people's arguments 'stupid': some people don't like that – Rom Mar 17 '10 at 1:32
2  
If you have another 300 lines of code in the same method then you have bigger code smells than what you just said. – Victor Hurdugaci May 11 '10 at 7:28
show 5 more comments
feedback

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|improve this answer
4  
If prefer to see: return p != 0 // or != NULL, whatever fits better – Thomas Tempelmann Jan 29 '09 at 21:16
6  
The obvious exception is when you're writing a toBoolean() method. :) – pcorcoran Mar 18 '10 at 21:23
show 2 more comments
feedback

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|improve this answer
6  
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
29  
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 '09 at 7:27
10  
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 '09 at 14:45
3  
@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 '09 at 18:42
3  
Count me in the other camp. I find comparison with true to aid legibility (and omitting it "smells" of premature optimization:-) Maybe because I was raised on C, where we would #define true 1 #define false 0 and you know the trouble you can sometimes get into if you code if (x) and not if (x == true) – Mawg Jan 10 '10 at 1:15
show 11 more comments
feedback

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|improve this answer
2  
If n is sufficienly large (i.e. 5 minutes or something), and it doesn't need 100% accuracy, sleep() can be a better solution than setting an event on the system clock. – Fraser Dec 14 '09 at 3:27
3  
This can be called "Race condition smell". – Glorphindale Feb 26 '10 at 6:01
1  
Sleep(1) should be another exception - give up time slice and don't get the next one if the thread has highest priority. – peterchen Mar 11 '10 at 15:08
show 6 more comments
feedback

Inappropriate Intimacy

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

Some suggestions how to refactor/avoid:

link|improve this answer
show 3 more comments
feedback

More of a pet peeve: not conveying role when naming variables.

For example:

User user1;
User user2;

instead of:

User sender;
User recipient;

Also, expressing a role with respect to the wrong context. Class attributes should be named with respect to their class.

Method parameters should be named with respect to their role within the method NOT the role of the passed arguments with respect to the calling code.

link|improve this answer
2  
This is such a basic thing that is easy to overlook, but I agree with you completely. Good descriptive names for all variables will go along way to making your code self documenting. The caveat is that variables need to be terse, otherwise your algorithm can begin to look like a novella. – James McMahon Oct 16 '08 at 13:29
1  
I wouldn't shortsell it as a petpeev. Variable naming (all naming) is very important and I think your example is a great one. Someone tried to improve naming (it is better than "a" and "b"), but they are just being more wordy rather than conveying additional meaning. Good one! – Goosey Jul 22 '09 at 16:45
feedback

Comments that precede code such as the following:

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

...or...

// Quick fix for <xxx>
link|improve this answer
35  
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
18  
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
11  
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
1  
Sometimes hacks are not just "quick fixes" sometimes hacks are getting the damn code to work where its not quite supposed to (especially when working with external components).. – Rob Cooper Sep 22 '08 at 16:52
3  
What should be done is //TODO: Rewrite - This is a dirty smelly hack – Chris Cudmore Sep 23 '08 at 15:53
show 15 more comments
feedback

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|improve this answer
13  
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
5  
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
4  
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
feedback
1 2 3 4 5 6

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