What are Code Smells? What is the best way to correct them? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T10:31:24Zhttp://stackoverflow.com/feeds/question/114342http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them243What are Code Smells? What is the best way to correct them?Rob Cooper2008-09-22T11:34:19Z2009-11-04T23:41:19Z
<p>OK, so I know <em>what</em> a code smell <em>is</em>, and the <a href="http://en.wikipedia.org/wiki/Code%5Fsmell" rel="nofollow">Wikipedia Article</a> is pretty clear in its definition:</p>
<blockquote>
<p>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.</p>
</blockquote>
<p>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 <strong>what code smells there are</strong>, but also <strong>how to correct them.</strong></p>
<h2>Some Rules</h2>
<p>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:
<hr /></p>
<h2>** ONE SMELL PER ANSWER PLEASE! & ADVISE ON HOW TO CORRECT! **</h2>
<ul>
<li>See <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them#114386">this answer</a> for a good display of what this thread should be!</li>
</ul>
<h3>DO NOT downmod if a smell doesn't apply to your language or development methodology</h3>
<p>We are all different.</p>
<h3>DO NOT just quickly smash in as many as you can think of</h3>
<p>Think about the smells you want to list and get a <strong>good</strong> idea down on how to work around.</p>
<h3>DO downmod answers that just look rushed</h3>
<p>For example "<em>dupe code - remove dupe code</em>". Let's makes it <strong>useful</strong> (e.g. Duplicate Code - Refactor into separate methods or even classes, use these links for help on these common.. etc. etc.).</p>
<h3>DO upmod answers that you would add yourself</h3>
<p>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.</p>
<h3>DO format your answers!</h3>
<p>Help others to be able to read it, use code snippets, headings and markup to make key points stand out!</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114352#114352290Answer by Rich B for What are Code Smells? What is the best way to correct them?Rich B2008-09-22T11:37:31Z2009-02-14T17:48:44Z<p><strong>Huge methods/functions</strong>. This is always a sure sign of impending failure.</p>
<p>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.</p>
<p>See also these related questions on SO:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/20981/how-many-lines-of-code-is-too-many">How many lines of code is too many?</a></li>
<li><a href="http://stackoverflow.com/questions/129599/best-rule-for-maximum-function-size">Best rule for maximum function size?</a></li>
</ul>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114354#114354248Answer by Rich B for What are Code Smells? What is the best way to correct them?Rich B2008-09-22T11:38:24Z2009-02-14T17:51:25Z<p><strong>Duplicate or copy/pasted code</strong>. When you start seeing things that could easily be reused that aren't, something is very wrong.</p>
<p>Refactoring to make reusable assemblies is the only cure.</p>
<p>See the Once and Only Once principle, and the Don't Repeat Yourself principle.</p>
<p><a href="http://www.redhillconsulting.com.au/products/simian" rel="nofollow">Simian</a>, a code similarity detection tool works wonders for fixing this.</p>
<p><a href="http://duplo.giants.ch/" rel="nofollow">duplo</a> is a good open source project that provides a free alternative.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114359#1143594Answer by Rich B for What are Code Smells? What is the best way to correct them?Rich B2008-09-22T11:39:50Z2009-03-20T20:24:29Z<p>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.</p>
<p>Time to sit these people down and make them understand that they can code simple, clear classes without interfaces too.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114360#114360186Answer by TraumaPony for What are Code Smells? What is the best way to correct them?TraumaPony2008-09-22T11:40:07Z2009-06-26T03:43:56Z<p><strong>Methods with a ridiculous (e.g. 7+) amount of parameters.</strong> This usually means that there should be a new class introduced (which, when passed, is called an indirect parameter.)</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114378#114378169Answer by TraumaPony for What are Code Smells? What is the best way to correct them?TraumaPony2008-09-22T11:43:20Z2009-02-14T17:53:49Z<p><strong>Avoid abbreviations.</strong></p>
<p>Variable names such as <code>x</code>, <code>xx</code>, <code>xx2</code>, <code>foo</code> etc (obviously if you are using Cartesian coordinates, 'x' is perfectly appropriate.) Rename.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114383#1143839Answer by ΤΖΩΤΖΙΟΥ for What are Code Smells? What is the best way to correct them?ΤΖΩΤΖΙΟΥ2008-09-22T11:44:28Z2008-09-22T11:44:28Z<p><code>for index 0 to len-1</code> style looping over a list in languages where iterators exist.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114386#11438672Answer by Rasmus Faber for What are Code Smells? What is the best way to correct them?Rasmus Faber2008-09-22T11:44:43Z2009-08-28T18:30:43Z<p><strong>Static variables</strong> or the design patterns variant: <strong>Singletons</strong></p>
<p>How to refactor:</p>
<ol>
<li><p>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).</p></li>
<li><p>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.</p></li>
</ol>
<p>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 <a href="http://code.google.com/p/google-guice/wiki/Scopes" rel="nofollow">@Singleton</a> and that would be it.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114387#11438747Answer by Paul Shannon for What are Code Smells? What is the best way to correct them?Paul Shannon2008-09-22T11:45:06Z2009-02-14T18:01:13Z<p><strong>Primitive Obsession</strong></p>
<p>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.</p>
<p><code>string</code> is the most common object of such obsession.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114393#11439347Answer by ΤΖΩΤΖΙΟΥ for What are Code Smells? What is the best way to correct them?ΤΖΩΤΖΙΟΥ2008-09-22T11:46:48Z2008-09-22T14:35:56Z<p>Inconsistent naming of variables, methods, functions etc (mixing <code>CamelCase</code> with <code>hpwsHungarian</code> with <code>everything_separated_with_underscores</code>)</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114397#11439745Answer by NotJarvis for What are Code Smells? What is the best way to correct them?NotJarvis2008-09-22T11:47:46Z2009-08-28T17:18:27Z<p>Any thread which depends on a sleep(n) call where n is not 0 (to release other threads).</p>
<p>For an example of why - see here:
<a href="http://www.flounder.com/badprogram.htm#Sleep" rel="nofollow">http://www.flounder.com/badprogram.htm#Sleep</a></p>
<p>Basically - the time you set for a sleep(n) call can always be wrong.</p>
<p>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...</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114410#114410103Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T11:52:11Z2009-06-26T03:46:56Z<p><strong>Huge code blocks in <code>switch</code> statements.</strong>
Move code to separate functions. Consider using a function table (dictionary).</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114414#114414126Answer by Gamecat for What are Code Smells? What is the best way to correct them?Gamecat2008-09-22T11:54:27Z2009-06-26T03:45:27Z<p><strong>Comments that focus on what the code does and not why.</strong> The code tells you what it does (okay, there are exceptions, but that is another smell). Try to use the comment to explain why.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114426#114426144Answer by bcash for What are Code Smells? What is the best way to correct them?bcash2008-09-22T11:58:02Z2009-02-14T17:54:26Z<p><strong>Empty catch blocks.</strong> Especially if the exception being ignored is <code>java.lang.Exception</code>/<code>System.Exception</code>.</p>
<p>If a block of code could throw multiple exceptions, there should be multiple catches. Each handling the appropriate exception accordingly.</p>
<p>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.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114429#1144298Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T11:58:21Z2008-09-22T11:58:21Z<p>Inconsistent enum members. </p>
<p>I know 2 variations of this problem: </p>
<p>1) enum members that actually belong to different domains (good example is .NET BindingFlags), </p>
<p>2) Tricky enum members:</p>
<p>enum MathOp
{
Plus,
Minus,
Empty
}</p>
<p>This often happens when enum values used in UI.</p>
<p>Cure:</p>
<p>1) Group enum values into different logically related enums.<br />
2) Don't mix logic and presentation</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114437#11443739Answer by moobaa for What are Code Smells? What is the best way to correct them?moobaa2008-09-22T11:59:20Z2008-09-22T11:59:20Z<p>Comments that precede code such as the following:</p>
<pre><code>// The following is a bit hacky, but seems to work...
</code></pre>
<p>...or...</p>
<pre><code>// Quick fix for <xxx>
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114439#1144392Answer by Midhat for What are Code Smells? What is the best way to correct them?Midhat2008-09-22T11:59:29Z2008-09-22T11:59:29Z<p>Configurable constants included in the code</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114451#11445116Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:02:35Z2008-09-22T12:02:35Z<p>Presence of <strong>GOTO</strong> statement.</p>
<p>Usually it means that either algorithm too complicated or function control flow is screwed.</p>
<p>No general practice unfortunately. Each case should be analyzed individually.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114454#1144548Answer by Manrico Corazzi for What are Code Smells? What is the best way to correct them?Manrico Corazzi2008-09-22T12:03:14Z2009-08-28T17:43:02Z<p><strong>Conditional spree</strong></p>
<p>Complex behaviour implemented by intricated <em>if...then...elseif...</em> blocks or long <em>switch...case</em> copy/pasted all over the class(es). </p>
<p>Suggested refactoring: <a href="http://www.refactoring.com/catalog/replaceConditionalWithPolymorphism.html" rel="nofollow">Replace Conditional with Polymorphism</a>.</p>
<p><em>NOTE:</em> overusing this strategy is also "code smell".</p>
<p><em>NOTE2:</em> I love the Kent Beck quotation from one of his books on Extreme Programming.</p>
<blockquote>
<p>If it smells change it (Grandma Beck
on childrens rearing).</p>
</blockquote>
<p>(or something like that, I don't have the book handy right now).</p>
<p><strong>EDIT</strong>: For a comprehensive list have you considered <a href="http://www.codinghorror.com/blog/archives/000589.html" rel="nofollow">this post on Coding Horror</a>?</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114459#11445917Answer by Ticex for What are Code Smells? What is the best way to correct them?Ticex2008-09-22T12:05:15Z2009-08-28T17:30:57Z<h2>Large Classes</h2>
<p>Large classes, that have more than one responsibility. Should then be separated.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114463#11446327Answer by TraumaPony for What are Code Smells? What is the best way to correct them?TraumaPony2008-09-22T12:06:27Z2008-09-22T12:06:27Z<p>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.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114479#11447910Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:10:45Z2008-09-22T12:10:45Z<h3>C# specific: use of <strong>ref</strong> keyword.</h3>
<p>Often makes program behavior unclear and complicated, can cause unpredicted side effects.</p>
<p>Consider returning new value rather than modify existing one i.e. instead of: </p>
<pre><code>void PopulateList(ref List<Foo> foos);
</code></pre>
<p>use</p>
<pre><code>List<Foo> GetListValues();
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114481#11448129Answer by Rasmus Faber for What are Code Smells? What is the best way to correct them?Rasmus Faber2008-09-22T12:11:04Z2008-09-22T13:31:11Z<p><strong>Switch statements</strong></p>
<p>Switch statements might be okay, but they are a smell that shows you should consider using inheritance or a State or Strategy pattern.</p>
<p>One example: (obvious, but I have seen something like this several time):</p>
<pre><code>switch(GetType().ToString())
{
case "NormalCustomer":
// Something
break;
case "PreferredCustomer":
// Something else
break;
}
</code></pre>
<p>A bit less obvious:</p>
<pre><code>switch(this.location.Type){
case Local:
// Something
break;
case Foreign:
// Something else
break;
}
</code></pre>
<p><strong>How to refactor</strong></p>
<ol>
<li><p>Move the switch to a separate method.</p></li>
<li><p>Do you already have an appropriate inheritance hierarchy?</p>
<p>2a. If you do, you might only need to move the individual case-statements to individual subclasses.</p>
<p>2b. If not: introduce inheritance - either directly, or by using the State- or Strategy-pattern.</p></li>
</ol>
<p><strong>Edit:</strong>
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. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114500#11450052Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:16:48Z2009-02-16T07:55:29Z<h3>Presence of types whose names start\end with "Utility", "Helper" or "Manager"</h3>
<p>This is a <em>very good sign</em> of presence of types violating SRP (Single Responsibility Principle).</p>
<p>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.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114508#1145081Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:20:54Z2008-09-22T12:20:54Z<h3>switch statement with number of cases <= 2</h3>
<p>Usually happens when using boolean-like enums ( enum { Off, On } ). </p>
<p>Consider using <em>if-else</em> statements</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114518#114518-1Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:23:03Z2008-09-22T12:23:03Z<h3>enums behaving like booleans</h3>
<p>Sample: </p>
<pre><code>enum SwitchState { On, Off }
if (x == SwitchSteate.On) ...
</code></pre>
<p>Consider using boolean variables instead of enums in such cases.</p>
<pre><code>bool isTurnedOn = ...
if (isTurnedOn) ...
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114530#11453090Answer by paul for What are Code Smells? What is the best way to correct them?paul2008-09-22T12:25:38Z2009-08-27T08:09:13Z<p><strong>Getting and re-getting the same property.</strong></p>
<p>e.g.</p>
<pre><code>if(getValue() != null && getValue().length() > 0
&& !getValue().startWith("Hugo") ...)
</code></pre>
<p>Who knows what is going on inside getValue()? Could be something costly.</p>
<p>I would prefer:</p>
<pre><code>String value = getValue();
if(value != null && value.length() > 0
&& !value.startsWith("Hugo") ...)
</code></pre>
<p><strong>Edit</strong></p>
<p>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.</p>
<p>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)</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114542#11454281Answer by Manrico Corazzi for What are Code Smells? What is the best way to correct them?Manrico Corazzi2008-09-22T12:27:39Z2009-08-28T17:12:12Z<p><strong>Overengineered design</strong></p>
<p>This is common when introducing ten thousands frameworks and then handling everything indirectly, even for very simple chores. </p>
<p>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 <strong>extend</strong> or <strong>implement</strong> something else.</p>
<p>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.</p>
<p><em>NOTE:</em> 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 <em>shotgun surgery</em>.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114546#1145469Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:28:14Z2009-08-28T17:47:04Z<h3>Returning more data that needed</h3>
<p>Example:</p>
<pre><code>List<Foo> Foos; // returns List<T> to provide access to List.Count property
</code></pre>
<p>Often this leads to misuse of data structures and unwanted data modifications.</p>
<p>Consider providing as much data as needed.</p>
<pre><code>IEnumerable<Foo> Foos; // Returns iterable collections of Foos.
int FooCount; // Returns number of Foo objects.
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114550#1145509Answer by Coincoin for What are Code Smells? What is the best way to correct them?Coincoin2008-09-22T12:29:09Z2008-09-22T12:29:09Z<p><strong>Excessive use of code outlining</strong></p>
<p>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.</p>
<p>Consider the following:</p>
<ul>
<li>Extract all types into their own file</li>
<li>Refactor the main class until it's small enough</li>
<li>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</li>
</ul>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114570#11457020Answer by AviD for What are Code Smells? What is the best way to correct them?AviD2008-09-22T12:31:57Z2009-08-28T17:30:04Z<p>Reinventing the wheel.<br />
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!)<br />
"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... </p>
<p>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.<br />
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.<br />
Same goes for other wheels, don't make it up on your own. It's stinky.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114576#114576287Answer by Stefan Rusek for What are Code Smells? What is the best way to correct them?Stefan Rusek2008-09-22T12:32:41Z2009-08-28T17:04:44Z<p><strong>Commented out code.</strong> I realize that this one is a lot of people favorite thing to do, but it is always wrong.</p>
<p>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:</p>
<ul>
<li>The old version will be around if you need it.</li>
<li>Commented out code makes code hard to read since it still looks like code, and takes up the same space as real code. </li>
<li>After a few changes to the original code, the commented out version is way out of date </li>
</ul>
<p>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.</p>
<p>Sometimes we comment out code during debugging and development. This is OK, just make sure to delete it before it is checked in.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114580#1145801Answer by sudo bountiful for What are Code Smells? What is the best way to correct them?sudo bountiful2008-09-22T12:34:16Z2008-09-24T10:56:44Z<h1>Stinky Commenting</h1>
<p><br>
<strong>Comments should:</strong> </p>
<ul>
<li>Say what the code is trying to
achieve, not how it is doing it.</li>
<li>Convey something that the code
cannot.</li>
</ul>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114602#1146020Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:38:01Z2008-09-22T12:38:01Z<h3>.NET specific: catching System.Exception exception</h3>
<p>Usually means that code author deserves to be beaten hard with baseball bat.</p>
<p>Don't even try to do it unless you have a <em>very good reason</em>. Did I mention baseball bat, no?</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114613#1146133Answer by Gishu for What are Code Smells? What is the best way to correct them?Gishu2008-09-22T12:40:52Z2008-09-22T12:40:52Z<p>Nicely disguised question. Voting smells up and down :)</p>
<p>Isn't this duplication of the refactoring book? Since all of this is already available in a nice place called <a href="http://refactoring.com/catalog/index.html" rel="nofollow">http://refactoring.com/catalog/index.html</a> with examples to boot..</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114616#1146166Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T12:41:31Z2009-08-28T18:10:11Z<h3>Checking for file existence before trying to access it (instead of I/O error handling).</h3>
<p>Common error of novice programmers. Instead of handling I/O exceptions, they check file for existence.</p>
<p>Forget about <em>File.Exists</em>-like methods unless you use files as markers\locking objects. Always handle file I/O errors when trying to read/write some meaningful data.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114618#11461811Answer by MusiGenesis for What are Code Smells? What is the best way to correct them?MusiGenesis2008-09-22T12:41:38Z2008-09-23T06:49:06Z<p><strong>Gratuitous (unnecessary) use of multithreading.</strong> </p>
<p>I've taken over many multithreaded applications, and I never needed a code smell to know there was a problem. Multithreaded applications are usually incredibly unreliable, and fail frequently in impossible-to-reproduce ways. I can't count the number of times I've seen an application start the execution of a long-running task on a separate thread, and then go into polling mode on the main thread (usually using Thread.Sleep(n)) and wait for the long-running task to complete.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114652#1146524Answer by Nazgul for What are Code Smells? What is the best way to correct them?Nazgul2008-09-22T12:47:13Z2008-09-22T12:47:13Z<p><strong>Lot of static methods</strong></p>
<p>This means that those methods do not belong to the class in which they are. So move them to a relevant class.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114669#11466990Answer by Coincoin for What are Code Smells? What is the best way to correct them?Coincoin2008-09-22T12:50:14Z2008-09-22T12:56:16Z<p><strong>Premature optimization</strong> </p>
<p>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.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114708#1147083Answer by Paul Shannon for What are Code Smells? What is the best way to correct them?Paul Shannon2008-09-22T12:56:54Z2008-09-22T13:14:34Z<p><strong>Pattern Duplication</strong></p>
<p>Not just copy/paste of lines but similarity in the methodology, for example, always setting up a transaction, calling arbitary methods on objects, returning a list of objects, tidying up etc - this could be refactored into a base class</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114721#1147212Answer by Richie_W for What are Code Smells? What is the best way to correct them?Richie_W2008-09-22T12:59:43Z2008-09-22T12:59:43Z<p>Catching un-checked exceptions - i.e. NullPointerException</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114760#1147604Answer by Omar Kooheji for What are Code Smells? What is the best way to correct them?Omar Kooheji2008-09-22T13:09:34Z2009-08-28T18:12:12Z<p>Not checking for null arguments on publicly visible methods.</p>
<p><strong>Explanation</strong></p>
<p>Any method which is publicly visible assumes that all its arguments have a value.</p>
<p><strong>Solution</strong></p>
<p>Check for null arguments and either deal with them if it's possible or just throw an ArgumentNull exception.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114771#11477139Answer by Sam Wessel for What are Code Smells? What is the best way to correct them?Sam Wessel2008-09-22T13:11:55Z2008-09-22T13:11:55Z<p><strong>Inappropriate Intimacy</strong></p>
<p>When classes access each other's fields or methods too much.</p>
<p>Some suggestions how to refactor/avoid:</p>
<ul>
<li>Make sure fields and methods are in the most appropriate class</li>
<li>Extract shared methods into a new class</li>
<li><a href="http://www.refactoring.com/catalog/replaceInheritanceWithDelegation.html" rel="nofollow">Replace Inheritance with delegation</a></li>
</ul>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114774#1147747Answer by Pascal T. for What are Code Smells? What is the best way to correct them?Pascal T.2008-09-22T13:12:23Z2008-09-22T13:12:23Z<p>The first wiki ever (<a href="http://c2.com" rel="nofollow">http://c2.com</a>) has a lot of stuff about refactorings and code smells.</p>
<p><a href="http://c2.com/cgi/wiki?CodeSmell" rel="nofollow">http://c2.com/cgi/wiki?CodeSmell</a></p>
<p>This is my main source of information about refactorings.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114785#1147856Answer by Omar Kooheji for What are Code Smells? What is the best way to correct them?Omar Kooheji2008-09-22T13:14:36Z2009-08-28T17:50:47Z<p>Methods that are exactly the same except for one parameter.</p>
<p>I recently picked up an applications to review that had 20 methods, every pair of methods were exactly the same except they were processing two different types of data...</p>
<p>I refactored this into a base class with the majority of the functionality and two child classess that only overrode the processing that was different between the two types of data.</p>
<p>Much easier to understand and if a change to the way things were processed was required I usually only had to make the change in one place in the base class.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114793#114793107Answer by aku for What are Code Smells? What is the best way to correct them?aku2008-09-22T13:16:10Z2009-02-14T17:56:56Z<h2>Not being able to understand what given piece of code does in less than 15 seconds</h2>
<p>99 chances out of 100 that this code is wrong. Either it's too complicated or just badly engineered.</p>
<h3>Cure:</h3>
<p>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!!!"</p>
<h3>Alternate cure:</h3>
<p>Refactor to make the code plain. Everything has a good name.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114797#1147973Answer by AviD for What are Code Smells? What is the best way to correct them?AviD2008-09-22T13:16:53Z2008-09-22T13:16:53Z<p>In contrast to the aforementioned "megaclasses", the opposite (nullclass?) are also smelly: classes that have absolutely no responsibility and are simply there for enterprisey generica. Same goes for methods that call the next method with the same arguments, which then call the next method with the same arguments, etc. </p>
<p>The solution, as with the megaclass, is to properly define proper responsibilities for each class, and purpose for each method. Try to flatten the class hierarchy as much as possible, adding complexity and abstractions only when absolutely necessary.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114808#11480812Answer by Vilmantas Baranauskas for What are Code Smells? What is the best way to correct them?Vilmantas Baranauskas2008-09-22T13:19:23Z2008-09-22T13:19:23Z<p>Wrong spelling of class and method names. Look up in a dictionary if not sure or use plugin in your IDE to check spelling for you.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114812#1148122Answer by Nazgul for What are Code Smells? What is the best way to correct them?Nazgul2008-09-22T13:20:07Z2008-09-22T13:20:07Z<p><strong>Defensive coding</strong></p>
<p>Code where there are a lot of null checks is a smell. If this is the case then there is some issue with your design.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114823#1148231Answer by Vilmantas Baranauskas for What are Code Smells? What is the best way to correct them?Vilmantas Baranauskas2008-09-22T13:21:40Z2008-09-22T13:21:40Z<p>Use of Vector and Hashtable in Java. This usually means that programmer knows nothing about collection framework and newer versions. Use List and Map interfaces instead and any implementation you like.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114826#11482626Answer by ilitirit for What are Code Smells? What is the best way to correct them?ilitirit2008-09-22T13:22:02Z2008-09-22T13:22:02Z<p>In languages that support OO, switching on type (of any kind) is a code smell that usually points to poor design. The solution is to derive from a common base with an abstract or virtual method (or a similar construct, depending on your language)</p>
<p>eg.</p>
<pre><code>class Person
{
public virtual void Action()
{
// Perform default action
}
}
class Bob : Person
{
public override void Action()
{
// Perform action for Bill
}
}
class Jill : Person
{
public override void Action()
{
// Perform action for Jill
}
}
</code></pre>
<p>Then, instead of doing the switch statement, you just call childNode.Action()</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114842#1148422Answer by Vilmantas Baranauskas for What are Code Smells? What is the best way to correct them?Vilmantas Baranauskas2008-09-22T13:24:12Z2008-09-22T13:24:12Z<p>Use of specific class instead of interface when declaring variable. Smells especially bad in combination with Java's collection framework.</p>
<p>Instead of</p>
<pre><code>ArrayList list = new ArrayList();
</code></pre>
<p>use</p>
<pre><code>List list = new ArrayList();
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114852#114852-1Answer by Vilmantas Baranauskas for What are Code Smells? What is the best way to correct them?Vilmantas Baranauskas2008-09-22T13:25:54Z2008-09-22T13:25:54Z<p>When Map is used to hold unique elements. E.g. </p>
<pre><code>Map map = new HashMap();
map.put(name, name);
</code></pre>
<p>Use Set instead:</p>
<pre><code>Set set = new HashSet();
set.add(name);
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114857#1148574Answer by Pace for What are Code Smells? What is the best way to correct them?Pace2008-09-22T13:27:09Z2009-08-28T18:00:34Z<p>Input variables that are then modified within a routine. If you ever need to revert back to what was passed in, it has already been changed.
I always set an input variable to some form of working variable. That way, you can always reference the original value and it keeps the code clean.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114866#11486623Answer by Vilmantas Baranauskas for What are Code Smells? What is the best way to correct them?Vilmantas Baranauskas2008-09-22T13:28:19Z2009-08-28T17:27:36Z<p>Not directly code, but it smells <strong>when <a href="http://en.wikipedia.org/wiki/Revision%5Fcontrol" rel="nofollow">VCS</a> log messages are empty or has such pattern</strong>:</p>
<p>"Changed MyClass.java.".</p>
<p>Fix: write useful comments telling <strong>why the change has been done</strong>, not that it was done.</p>
<p>E.g.: "Fixed bug #7658: NPE when invoking display of user."</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114893#11489316Answer by torial for What are Code Smells? What is the best way to correct them?torial2008-09-22T13:34:06Z2009-08-28T17:33:39Z<p>Can't believe this hasn't been provided: high <a href="http://en.wikipedia.org/wiki/Cyclomatic%5Fcomplexity" rel="nofollow">cyclomatic complexity</a> for a method/function. Anything over 20 (with some exceptions like dispatcher methods) should have functions extracted out.</p>
<p><a href="http://www.campwoodsw.com/sourcemonitor.html" rel="nofollow">Source Monitor</a> is an excellent tool for gathering source code metrics like this.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114934#11493441Answer by Rasmus Faber for What are Code Smells? What is the best way to correct them?Rasmus Faber2008-09-22T13:45:24Z2009-08-28T17:22:56Z<p>Just a general comment about code smells:</p>
<p>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 ...".</p>
<p>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. </p>
<p>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.</p>
<p>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.</p>
<p>To summarize: code smells are simple heuristics that indicate that you <em>might want to</em> consider refactoring and <em>suggest</em> a possible appropriate refactoring.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114936#1149368Answer by MrZebra for What are Code Smells? What is the best way to correct them?MrZebra2008-09-22T13:46:37Z2008-09-22T13:46:37Z<p><strong>Overuse of casting</strong></p>
<p>Lots of casting between (potentially) unrelated types makes it difficult to tell what type variable pointed to actually is, and is usually a sign that someone is trying to be too clever with memory usage. Use a union if you really want to do this.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114951#11495181Answer by MrZebra for What are Code Smells? What is the best way to correct them?MrZebra2008-09-22T13:48:55Z2008-09-22T13:48:55Z<p><strong>Reusing Variables</strong></p>
<p>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!<br />
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.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114992#1149926Answer by MrZebra for What are Code Smells? What is the best way to correct them?MrZebra2008-09-22T13:58:14Z2008-09-22T13:58:14Z<p><strong>Overuse of meaningless variable names</strong></p>
<p>If you see a function that has lots of variables like "a, b, c, x, y, z", it can indicate that the function's logic was poorly thought out. Clear variable names tend to show that the author has a more clear understanding of the operation of the function, and also assist the reader's understanding. It should be refactored by renaming the variables to something more descriptive.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115023#1150231Answer by Herr_Alien for What are Code Smells? What is the best way to correct them?Herr_Alien2008-09-22T14:04:41Z2008-09-22T14:04:41Z<p>Too many dimensions for arrays, like:</p>
<pre><code>double *********array = NULL;
</code></pre>
<p>That's definitely a call for better data handling.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115076#1150767Answer by John Cocktoastan for What are Code Smells? What is the best way to correct them?John Cocktoastan2008-09-22T14:15:23Z2008-09-22T14:30:24Z<p>In C#, invoking <strong>GC.Collect</strong> repeatedly, for any reason. This is a serious pet-peeve for me, and is almost always indicative of "Let the garbage collector handle it!" syndrome.</p>
<p>Yes, in C# we have a garbage-collector. No, it doesn't make up for messy allocation/deallocation logic.</p>
<p>To correct: disable the GC.Collect code, use perfmon, CLR memory counters, and find those leaks. Make sure that dispose is implemented properly, and called properly.</p>
<p>Use "using" statements whenever possible. Refactor if necessary to make "using" statements work for you.</p>
<p>They call it a self-tuning garbage collector for a reason, trust it to do it's job properly.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115260#1152600Answer by Sara Chipps for What are Code Smells? What is the best way to correct them?Sara Chipps2008-09-22T14:48:37Z2008-09-22T14:48:37Z<p>When you are doing the same thing (manipulating an object, doing similar SQL calls, processing data, changing a control) more than once in more than one place it's time to refactor. That gives way to smelly redundant code. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115303#11530320Answer by Shane for What are Code Smells? What is the best way to correct them?Shane2008-09-22T14:56:24Z2008-09-22T14:56:24Z<p>Steve McConnell's book "<strong><em>Code Complete: A Practical Handbook of Software Construction</em></strong>" is essentially a 900 page answer to this question. It's an outstanding book.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow" title="Code Complete by Steve McConnell">http://www.amazon.com/Code-Complete-Practical-Handbook-Construction/dp/0735619670</a></p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115311#11531115Answer by Nathan Long for What are Code Smells? What is the best way to correct them?Nathan Long2008-09-22T14:57:43Z2008-09-22T14:57:43Z<p><strong>Variable Scope too large</strong>.</p>
<p>Global variables make it hard to keep track of which function modified something and when.</p>
<p>Refactor so that variables exist only within a function. Functions should pass information to each other via arguments and return values.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115430#115430-5Answer by Eric Burnett for What are Code Smells? What is the best way to correct them?Eric Burnett2008-09-22T15:16:33Z2008-09-22T15:23:32Z<h3><code>If</code> statement without corresponding <code>else</code></h3>
<p>Not all <code>if</code> statements need an else, but when one isn't present you should check if it really should be there. If one program state needs special handling, often the opposite state does too.</p>
<p>Example where an <code>else</code> may be necessary:</p>
<pre><code>if (teacher != null) {
addStudents(teacher, period, students);
}
// Else?
else {
// Why is `teacher` null? Is this an error state?
// Will the students be 'lost' for this period?
}
</code></pre>
<p><strong>Solutions:</strong></p>
<ul>
<li>Add an else block with the correct logic</li>
<li>Change the <code>if</code> check to an assert</li>
<li><p>If no else is necessary, but this isn't immediately apparent, add an empty else block:
<br></p>
<pre><code>} else {
// Nothing to do here
}
</code></pre></li>
</ul>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115975#11597513Answer by Camilo Díaz for What are Code Smells? What is the best way to correct them?Camilo Díaz2008-09-22T16:39:16Z2009-08-28T17:35:44Z<h2>With database access</h2>
<p>String concatenation, specially used for giant prepared SQL-statements, when there are lines like:</p>
<pre><code>String select = "select ..."
// Lots of code here
select += "and c.customer_id = ? "
select += "and da.order_id in (?, ?, ?)"
</code></pre>
<p>And worse, then tracking the position of the index:</p>
<pre><code>preparedSt.setInt(++cnt, 15);
preparedSt.setString(++cnt, 15);
</code></pre>
<h2>With objects properties</h2>
<p>Repeatedly accessing beans or value objects properties like this:</p>
<pre><code>customer.getOrders().get(0).getPaymentDetail().getAmount();
</code></pre>
<h2>In very simple boolean logic</h2>
<p>Seeing nested 'ifs' like this when single-level if's or a switch statement will suffice:</p>
<pre><code>if (cond1) {
/* Something */
} else {
if (cond2) {
/* Something else */
} else {
if (cond3) {
/* Something else, again */
} else {
/* And goes on... */
}
}
}
</code></pre>
<p>Using two boolean variables to refer to a simple, unique condition, that can be deduced just by one of them:</p>
<pre><code>boolean finished, nextIsPending;
if (task.isRunning()) {
finished = false;
nextIsPending = true;
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/116124#1161241Answer by JB King for What are Code Smells? What is the best way to correct them?JB King2008-09-22T17:05:44Z2008-09-22T17:05:44Z<p>"Orphaned" functions that are all put into a file without any organization/order. For example, an 8000 line ASP file of 100 functions that look like spaghetti code or the beginnings of it. There may be more than one smell to this, but when I come across it, there is some pain in having to maintain legacy applications that have this "feature" ;)</p>
<p>The fix for this is to create some classes that group the functions and determine which are useful functions that go into a class and which should be refactored into something else.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/116190#1161900Answer by Mariano for What are Code Smells? What is the best way to correct them?Mariano2008-09-22T17:15:54Z2008-09-24T19:39:46Z<p><strong><a href="http://en.wikipedia.org/wiki/Cyclomatic_complexity" rel="nofollow">Cyclomatic complexity</a> > 25</strong></p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/116201#1162014Answer by Michael Lang for What are Code Smells? What is the best way to correct them?Michael Lang2008-09-22T17:17:51Z2008-09-22T18:51:04Z<p><strong>C# (perhaps smelly in Java too): Use of collections of type object</strong></p>
<p>To me this smells really funny and indicates that the purpose of a collection may have not been thought out very well. As far as I know, these should only crop up in implementations of something like a completely generic property bag paired with some helper method that performs an attempt to cast and retrieve. </p>
<p>Otherwise this usually indicates the objects going into the collection should implement a common interface which in turn would be the type of the collection elements.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/116414#116414113Answer by Mark Stock for What are Code Smells? What is the best way to correct them?Mark Stock2008-09-22T17:58:20Z2009-09-26T00:05:04Z<h1>Pacman ifs</h1>
<p><a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them#115975">nested ifs</a></p>
<pre><code>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... */
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/116422#11642215Answer by Apocalisp for What are Code Smells? What is the best way to correct them?Apocalisp2008-09-22T18:00:06Z2008-09-22T18:00:06Z<p><strong>Excessive Inheritance</strong></p>
<p>Many newcomers to object-oriented programming immediately pick up on the idea of inheritance. It's intuitive because it is superficially isomorphic to the way we organize concepts into hierarchies. Unfortunately, it's often the case that this is the only abstraction that they end up using, so you end up with class hierarchies like:</p>
<pre><code>Buzz
BuzzImpl
FizzBuzz
BatchFizzBuzz
BatchFizzBuzzWithFoo
BatchFizzBuzzWithBar
BatchFizzBuzzWithNeitherFooNorBar
FizzBuzzThatSendsEmail
BuckFizzBuzz
BuckFizzBuzzWithFoo
...etc.
</code></pre>
<p>To fix, use composition rather than inheritance. Instead of having FizzBuzz inherit from Buzz, have it take a Buzz in its constructor.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/117553#1175534Answer by David for What are Code Smells? What is the best way to correct them?David2008-09-22T20:50:45Z2008-09-22T20:50:45Z<p><strong>Catch blocks that simply do exception.printStackTrace()</strong></p>
<p>Exceptions should be handled properly, not simply printed.</p>
<ul>
<li>If a class can't handle the exception on its own, it should be thrown to the caller</li>
<li>At a minimum, exceptions should be logged</li>
<li>If nothing else, something user-friendly should happen... (any suggestions?)</li>
</ul>
<p>This applies to product-level code... I'd be more lax on this rule if it's for an internal tool.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/117718#117718-2Answer by AlanR for What are Code Smells? What is the best way to correct them?AlanR2008-09-22T21:19:46Z2008-09-22T21:19:46Z<p>Here's a somewhat obvious one, but I'd had to put up w/ it a few times...</p>
<p>You check out code from source control.... and it doesn't compile. Drives me crazy.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/117804#1178042Answer by MicroWizard for What are Code Smells? What is the best way to correct them?MicroWizard2008-09-22T21:37:22Z2008-09-22T21:37:22Z<p><strong>General error handling</strong></p>
<p>In languages where exception handling is possible, typical bug is to have all exceptions caught. This means the developer is not aware what kind of errors could occur.</p>
<p>For example in PL/SQL 'EXCEPTION WHEN OTHERS' smells.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/117848#1178482Answer by MicroWizard for What are Code Smells? What is the best way to correct them?MicroWizard2008-09-22T21:47:06Z2008-09-22T21:47:06Z<p><strong>Too short code fragments or structured to death</strong></p>
<p>If I see a lot of short source files, object definitions and methods with <em>only one</em> row real content, I feel this project was structured to death.
More brackets then code lines is the first sign.</p>
<p>Dare to write <em>complete</em> (but small !) code snippets/methods/etc. without feeling the pressure to stamp out into unreadable particles.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/117890#1178905Answer by srclontz for What are Code Smells? What is the best way to correct them?srclontz2008-09-22T21:54:27Z2009-08-28T17:56:07Z<p>Useless logging....</p>
<pre><code>try {
}
catch (Exception e)
log.error(e.printStackTrace());
}
</code></pre>
<p>Instead try to think about what sort of error might occur, and put something useful in the logs. This could be something like, "Properties File Not Found" or "Unable To Connect To Database"</p>
<p>Try to catch specific errors, rather than a general exception so that when it fails, the program you wrote won't be immediately blamed. For example, if there is a connection error, put it in plain english, "Database Connection Error".</p>
<p>Better yet....handle the error in the code without necessarily making it to the catch block.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118022#1180220Answer by HLGEM for What are Code Smells? What is the best way to correct them?HLGEM2008-09-22T22:31:00Z2008-09-22T22:31:00Z<p>From a database perspective (SQL Server to be specific)
More than two layers of nested ifs - very easy to have a logic error
Dynamic SQl in a stored proc - make sure that you aren't open to sql-injection attacks
Cursors - is there a set-based solution?
More than 5 joins especially when no columns from some of the joined tables are in the result set (do we perhaps need to denormalize for performance?)
Use of subqueries instead of derived tables
Over use of user-defined functions
use of Select *</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118076#11807666Answer by Marcel Tjandraatmadja for What are Code Smells? What is the best way to correct them?Marcel Tjandraatmadja2008-09-22T22:48:27Z2009-08-28T17:16:26Z<h1>Negatives</h1>
<p>They are a burden on the human mind.</p>
<h2>Double negatives</h2>
<p>I ran into a piece of code such as:</p>
<pre><code>if( ! value != 1 )
</code></pre>
<p>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:</p>
<pre><code>if( value == 1 )
</code></pre>
<h2><code>Else</code> is a negative</h2>
<p>When you see <code>else</code> 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.</p>
<p>If the <code>else</code> clause is the "happy path", <em>i.e.</em> the non-
error case, then your brain has to work to follow the flow
of code. Use Guard Clauses instead.</p>
<h2>Single negatives</h2>
<p>Even single negatives require mental effort. So it's easier to read:</p>
<pre><code>if (IsSummer())
</code></pre>
<p>than</p>
<pre><code>if (!IsWinter())
</code></pre>
<p>Also</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118173#1181730Answer by Karthik Hariharan for What are Code Smells? What is the best way to correct them?Karthik Hariharan2008-09-22T23:11:56Z2008-09-22T23:11:56Z<p>everyone is pointing out specific things that bother them and that they consider a "code smell".</p>
<p>I think after a while, once you get the hang of it, you sort of develop a "sixth sense" about what is wrong with a piece of code. You may not be able to immediately pinpoint how to refactor it or make it cleaner, but you know something is wrong. This will drive you to find a better pattern/solution for it.</p>
<p>Understanding all the examples others have posted is a good start for developing this sense.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118214#1182141Answer by Robert Paulson for What are Code Smells? What is the best way to correct them?Robert Paulson2008-09-22T23:26:39Z2008-09-23T21:25:19Z<h3>Reassigning Parameters in Method Body</h3>
<p>Reassigning parameters in the method body is a bad smell. It's a source of confusion and can be a source of errors when the code is edited later. </p>
<p>Was the programmer trying to alter the caller's reference, or were they just lazy and unimaginative? Was it a mistake?</p>
<pre><code>void Foo( MyClass x )
{
if( x.SomeProperty ) ....
// ...
if( someCondition ) { // yuck!
x = new MyClass(); // reassign's local reference x, parameter x is lost
}
// ...
DoSomething(x); // which x should this be?
}
</code></pre>
<p>To fix, create a new variable, or consider refactoring such that reassignment is not necessary.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118240#1182405Answer by Georgi for What are Code Smells? What is the best way to correct them?Georgi2008-09-22T23:36:54Z2008-09-22T23:42:52Z<p>Trying to be more precise in an error case by parsing the error message.</p>
<p>I often saw something like</p>
<pre><code>try {
File f = new File("anyfile.txt");
if(file.isDirectory()) {
throw new IOException("File is a directory!");
}
file.open();
}
catch(IOException ex) {
if(ex.getMessage().indexOf("File is a directory")>=0) {
System.out.println("The file is a directory!");
}
else if(ex.getMessage().indexOf("File does not exist")>=0) {
System.out.println("The file does not exist!");
}
}
</code></pre>
<p>The strange thing is, if you change the error message, the behavior of the code will change ;-)</p>
<p>How to avoid:</p>
<p>Split the code-block and react to the errors individually. More to type but definitely worth it.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118330#1183307Answer by Robert Paulson for What are Code Smells? What is the best way to correct them?Robert Paulson2008-09-23T00:03:30Z2009-08-28T17:45:50Z<h3>Too Many [out] Parameters (.NET)</h3>
<p>When a method contains out parameters, especially when there are more than one out parameter, consider returning a class instead.</p>
<pre><code>// Uses a bool to signal success, and also returns width and height.
bool GetCoordinates( MyObject element, out int width, out int height )
</code></pre>
<p>Replace with a single return parameter, or perhaps a single out parameter.</p>
<pre><code>bool GetCoordinates( MyObject element, out Rectangle coordinates )
</code></pre>
<p>Alternatively you could return a null reference. Bonus points if the class implements the <a href="http://exciton.cs.rice.edu/javaresources/DesignPatterns/NullPattern.htm" rel="nofollow">Null Object pattern</a>. This allows you to get rid of the boolean as the class itself can signal a valid state.</p>
<pre><code>Rectangle GetCoordinates( MyObject element )
</code></pre>
<p>Further, if it makes sense, have a specialised class for the return value. While not always applicable, if the return value is not a simple true/false for success then it may be more appropriate to return a composite of the returned object plus state. It makes caller's code easier to read and maintain.</p>
<pre><code>class ReturnedCoordinates
{
Rectangle Result { get; set; }
CoordinateType CoordinateType { get; set; }
GetCoordinateState SuccessState { get; set; }
}
ReturnedCoordinates GetCoordinates( MyObject element )
</code></pre>
<p>Admittedly overuse of this can lead to further bad smells.</p>
<h3>A Good [out] Pattern</h3>
<p>Note that [out] parameters are still useful, especially in the following <a href="http://blogs.msdn.com/kcwalina/archive/2005/03/16/396787.aspx" rel="nofollow">Tester-</a><a href="http://dotnetperls.com/Content/Tester-Doer.aspx" rel="nofollow">Doer</a> pattern.</p>
<pre><code>// In the Int32 class.
bool TryParse(string toParse, out int result)
</code></pre>
<p>this is far more efficient than</p>
<pre><code>// BAD CODE - don't do this.
int value = 0;
try
{
value = int.Parse(toParse);
}
catch {}
</code></pre>
<p>when you expect the input string <code>toParse</code> is probably not valid.</p>
<h3>Summary</h3>
<p>In many cases, the presence of any [out] parameters indicates a bad smell. Out parameters make the code harder to read, understand, and maintain. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118428#11842817Answer by Adam Pierce for What are Code Smells? What is the best way to correct them?Adam Pierce2008-09-23T00:33:27Z2008-09-23T00:33:27Z<p>Dumb comments or comments which are not updated when the code changes:</p>
<pre><code>// Check all widgets (stops at 20 since we can never
// have more than 20 widgets).
for(int i = 0; i < 55 && widget[i]; i++)
processWidget(widget[i]);
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118825#1188251Answer by JohnMcG for What are Code Smells? What is the best way to correct them?JohnMcG2008-09-23T02:41:59Z2008-09-23T02:41:59Z<p><strong>Smell</strong>: Database columns with names like value1, value2 ... valueN</p>
<p><strong>Problem</strong>: Modleing a many-to-many relationship without a marriage table.</p>
<p><strong>Solution</strong>: Create a marraige table to normalize the data model.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118829#1188292Answer by JohnMcG for What are Code Smells? What is the best way to correct them?JohnMcG2008-09-23T02:44:22Z2008-09-23T02:44:22Z<p><strong>Smell:</strong> In C++, an object is dynaimically created and assigned to a bare pointer.</p>
<p><strong>Problem:</strong> These must be explicitly deleted in all paths out of the program, including exceptions.</p>
<p><strong>Solution:</strong> Manage the object in a smart pointer object, including std::auto_ptr, or one from the Boost libraries.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118836#1188369Answer by JohnMcG for What are Code Smells? What is the best way to correct them?JohnMcG2008-09-23T02:47:46Z2008-09-26T01:42:17Z<p><strong>Smell:</strong> Operator overloaded to perform a non-intuitive function. e.g. operator^ used to convert a string to uppercase.</p>
<p><strong>Problem:</strong> Very likely clients will use it incorrectly.</p>
<p><strong>Solution:</strong> Convert to a function with a sensible name.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118837#1188374Answer by JosephStyons for What are Code Smells? What is the best way to correct them?JosephStyons2008-09-23T02:48:11Z2008-09-23T02:48:11Z<p>Code Smell: A giant chain of classes descending from each other, and only the very last one is ever used.</p>
<p>Solution: Usually this says the design is waaay over-engineered. Usually the descendants can be rolled up into a simpler parent-child relationship.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118883#1188833Answer by JohnMcG for What are Code Smells? What is the best way to correct them?JohnMcG2008-09-23T03:07:08Z2009-08-28T18:36:49Z<p><strong>Smell</strong>: query in a program that is either "SELECT *" or an insert without column names.</p>
<p><strong>Problem</strong>: if the structure of the table changes, the code will break.</p>
<p><strong>Solution</strong>: be explicit about what columns are being selected or inserted.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118888#1188880Answer by Bazman for What are Code Smells? What is the best way to correct them?Bazman2008-09-23T03:08:10Z2008-09-23T03:08:10Z<blockquote>
<p>Huge methods/functions. This is always
a sure sign of impending failure.</p>
<p>Huge methods should be refactored into
smaller methods and functions, with
more generic uses.</p>
</blockquote>
<p><strong>Potential Solution:</strong></p>
<p>I've found that a really great way to avoid this is to make sure you are thinking about and writing unit tests as you go.</p>
<p>You find whenever a method/function gets too large, it becomes very difficult to work out how to unit test it well, and very clear on when and how to break it up.</p>
<p>This is also a good approach to refactoring an existing huge function.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118894#1188948Answer by rjurney for What are Code Smells? What is the best way to correct them?rjurney2008-09-23T03:10:15Z2008-09-23T03:10:15Z<p>Exception handling blocks which say only:</p>
<p>/* We are SO SCREWED! */</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118895#11889511Answer by keparo for What are Code Smells? What is the best way to correct them?keparo2008-09-23T03:10:17Z2009-08-28T17:38:18Z<h3>Code Smell (noun)</h3>
<p>This is a general criticism of poorly written or <strong>poorly designed</strong> software.</p>
<p>Example usage: "I was disappointed when I saw the source code. Everything <em>basically works</em>, but that <em>code smells</em>".</p>
<p>There are a lot of reasons why software might qualify as "smelly". People have listed quite a few specifics here.. Things like having overly complicated data structures, global variables and goto statements. But while these are all symptoms of smelly code, the truth is that <strong>there isn't a hard and fast rule</strong>. In programming, any specific problem could be solved a handful of ways, <strong>but not every answer is as good as the next</strong>.</p>
<h3>Some basic principles</h3>
<p>We value code that is <strong>easy to read</strong>. Most programmers will probably spend the majority of their time reading and editing existing code, even if it is code that they wrote themselves.</p>
<p>Along the same lines, <strong>reusable code</strong> is also considered valuable. This doesn't mean that code is copied and pasted.. It means that code has been organized into a logical system, allowing specific tasks to be performed by the same piece of code (with maybe just a few differences each time, like a value in each calculation).</p>
<p>We value <strong>simplicity</strong>. We should be able to make single changes to a program by editing code in one place, or by editing a specific module of code.</p>
<p>We value <strong>brevity</strong>.</p>
<p>Smelly code is hard to read, hard to reuse, hard to maintain, and is fragile. Small changes may cause things to break, and there is little value in the code beyond its one time use.</p>
<p>Code that simply "works" isn't very difficult to write. Many of us were writing simple programs as teenagers. On the other hand, a good software developer will create code that is <strong>readable, maintainable, reusable, robust</strong>, and potentially <strong>long-lived</strong>.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118947#1189473Answer by Ferruccio for What are Code Smells? What is the best way to correct them?Ferruccio2008-09-23T03:27:49Z2008-09-23T03:27:49Z<p><strong>Voodoo code</strong></p>
<p>Code that repeats a call do something more than necessary, just in case.</p>
<p>Or, my favorite example: putting try/catch blocks around code that can't possibly throw an exception. Again, just in case.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118960#1189600Answer by Ferruccio for What are Code Smells? What is the best way to correct them?Ferruccio2008-09-23T03:32:45Z2008-09-23T03:32:45Z<p><strong>Weird constructs designed to get around best practice</strong></p>
<p>e.g.</p>
<pre><code>do
{
...
if (...)
break;
...
} while (false);
</code></pre>
<p>That's still a goto, even in disguise.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118966#1189661Answer by Bob for What are Code Smells? What is the best way to correct them?Bob2008-09-23T03:34:20Z2008-09-23T03:34:20Z<p>Give your code a good bath using quality soap, then air out for a week, the smell will be gone.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/119299#1192995Answer by RodgerB for What are Code Smells? What is the best way to correct them?RodgerB2008-09-23T05:47:08Z2009-08-28T18:13:35Z<p><strong>Smell: Long lines of code</strong></p>
<p>My definition of a long line of code (because I'm a .NET developer), is any line of code that requires a horizontal scroll bar to be viewed in the editor in Visual Studio (without collapsing the toolbox or the Solution Explorer pane). The developer should visualise the poor programmer working at a low resolution, with a seemingly never ending horizontal scroll bar.</p>
<p>Example:</p>
<pre><code>Dim cn As New SqlConnection(ConfigurationManager.ConnectionStrings("DatabaseConnectionString").ConnectionString)
</code></pre>
<p><strong>Solution: Use New Lines</strong></p>
<p>Break up your code into appropriately sized pieces, not bite sized, not generous, but just right.</p>
<p>Example:</p>
<pre><code>Dim cn As New SqlConnection( _
ConfigurationManager.ConnectionStrings("DatabaseConnectionString") _
.ConnectionString)
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/119373#11937333Answer by seanb for What are Code Smells? What is the best way to correct them?seanb2008-09-23T06:23:06Z2008-09-23T06:23:06Z<p><strong>Testing a bool for equality with true</strong> </p>
<pre><code>bool someVar
....
if(someVar == true)
{
doStuff();
}
</code></pre>
<p>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. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/119433#1194331Answer by deadbug for What are Code Smells? What is the best way to correct them?deadbug2008-09-23T06:43:14Z2008-09-23T06:43:14Z<p>Dynamically generated SQL smells. It has it's limited uses, but in general makes me nauseas.</p>
<p>A very simple example below ...</p>
<p>Don't:</p>
<pre><code>DECLARE @sql VARCHAR(MAX), @somefilter VARCHAR(100)
SET @sql = 'SELECT * FROM Table WHERE Column = ''' + @somefilter + ''''
EXEC(@sql)
</code></pre>
<p>Do:</p>
<pre><code>SELECT * FROM Table WHERE Column = @somefilter
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/120217#12021723Answer by chickeninabiscuit for What are Code Smells? What is the best way to correct them?chickeninabiscuit2008-09-23T10:24:40Z2009-08-28T17:25:40Z<p>More of a pet peeve: not conveying role when naming variables.</p>
<p>For example:</p>
<pre><code>User user1;
User user2;
</code></pre>
<p>instead of:</p>
<pre><code>User sender;
User recipient;
</code></pre>
<p>Also, expressing a role with respect to the wrong context. Class attributes should be named with respect to their class.</p>
<p>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.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/120555#1205550Answer by computinglife for What are Code Smells? What is the best way to correct them?computinglife2008-09-23T12:04:48Z2008-10-31T09:33:14Z<p>My list - <a href="http://computinglife.wordpress.com/2008/06/03/what-really-is-bad-code-levels-of-bad-ness/" rel="nofollow">http://computinglife.wordpress.com/2008/06/03/what-really-is-bad-code-levels-of-bad-ness/</a></p>
<p>Excerpts - </p>
<ol>
<li>Does not catch errors / ignore return values</li>
<li>Memory leaks / Exceptions</li>
<li>No validations (on inputs / parameters / strings)</li>
<li>Too big a function / class</li>
<li>Globals</li>
<li>Pointy code (<a href="http://www.codinghorror.com/blog/archives/000486.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000486.html</a>)</li>
<li>Too many variables</li>
<li>No indentation</li>
<li>Weak naming</li>
<li>Extremely big individual lines</li>
</ol>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/120747#120747107Answer by John Ferguson for What are Code Smells? What is the best way to correct them?John Ferguson2008-09-23T12:42:51Z2008-09-23T12:42:51Z<h2>Magic numbers</h2>
<p>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?</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/121092#1210923Answer by David T for What are Code Smells? What is the best way to correct them?David T2008-09-23T13:44:15Z2008-09-23T13:44:15Z<p><strong>Allowing access to objects you own</strong></p>
<p><strong>Smell:</strong> long chains of .GetX().GetY().</p>
<p><strong>Problem:</strong></p>
<p>If you allow users to get access to the objects used by your class, either by making them public or via a get method then your just asking for trouble, someone could come along and do: </p>
<pre><code>A a;
a.GetB().GetC().GetD().SetSize(43);
</code></pre>
<p>2 things are wrong with this. </p>
<ul>
<li><p>Joe Bloggs can come along and suddenly change the size of D, in fact he can do almost anything he wants with D. This won't be a problem if you've taken that into consideration whilst writing A, but how many people check that kind of thing?</p></li>
<li><p>The users of your class can see and have access to how its implemented. If you want to change something, say implement C so that it uses a Q instead of D, then you'll break everyone's code that uses the class. </p></li>
</ul>
<p><strong>Solution:</strong>
The fix depends on how your class will be used, but in both cases the first step is to remove the GetX().</p>
<p>If a user really does need to be able to call SetSize(43) then you should write a wrapper function in each of the classes that passes the new value down. Then if you choose to implement C so that it uses a Q instead of D then no one apart from C will have to know about it. </p>
<pre><code>A a;
a->SetSize(43);
class A
{
SetSize(int size){b.SetSize(size);}
};
etc.
</code></pre>
<p>If the user of the class shouldn't need to call SetSize then just don't implement a wrapper for it. </p>
<p>If you find that most of D's functions need to be pulled up to A then this may indicate that your design is starting to smell, see if there is a way to rewrite C and B so they don't rely directly on D. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/121850#12185010Answer by Gord for What are Code Smells? What is the best way to correct them?Gord2008-09-23T15:45:31Z2008-09-23T15:45:31Z<p><strong>Using magic numbers for return values.</strong></p>
<pre><code>int orderID = DAL.GetOrderIDForUser(1);
if(orderID == -1)
ShowNoOrdersPage();
else
ShowOrder(orderID);
</code></pre>
<p>It is just a matter of time before you end up with a -2 or -3.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/122050#1220503Answer by Chris Wenham for What are Code Smells? What is the best way to correct them?Chris Wenham2008-09-23T16:14:48Z2008-09-23T18:07:50Z<p>Putting too much meaning into boolean parameters. Eg, the method that starts with:</p>
<pre><code>public void Foo(bool isMonday)
{
int hoursToCheck = 24;
bool ignoreHeader = false;
string skipLinesContaining = "";
if (isMonday)
{
hoursToCheck = 12;
ignoreHeader = true;
skipLinesContaining = "USD";
}
...
}
</code></pre>
<p>The <em>isMonday</em> parameter is loaded with too much meaning, and the three implied parameters should be passed on their own.</p>
<p>The same smell manifests itself in enums and configuration settings as well. Be on the lookout for boolean-like parameters that have vague names that could imply many assumptions.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/123984#1239849Answer by 18Rabbit for What are Code Smells? What is the best way to correct them?18Rabbit2008-09-23T21:22:40Z2008-09-23T21:22:40Z<p><strong>Putting in a "temporary" fix.</strong> </p>
<p>Temporary fixes have a funny way of becoming permanent because you never seem to have the time/inclination/memory to go back and fix them. </p>
<p>If you're going to fix something, fix it the right way the first time. </p>
<p>If it seems like it will be a huge undertaking to change it then maybe you need to re-evaluate why it needs to be changed. If it's unavoidable that it must be changed then put in the best fix that you can in the time allotted and assume that it will be permanent (because it will be).</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/125687#1256874Answer by timdisney for What are Code Smells? What is the best way to correct them?timdisney2008-09-24T06:23:22Z2008-09-24T06:23:22Z<p>Comments used to mark out unrelated or loosely related sections of code. Usually means that a file is trying to do too much and should be broken apart into separate files/classes.</p>
<pre><code>//########### Code to do foo ###########
// 500 lines of code...
//########### Code to do bar ###########
// another 500 lines of unrelated code...
//########### Code to do baz ###########
// ...
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/127229#1272293Answer by Justsalt for What are Code Smells? What is the best way to correct them?Justsalt2008-09-24T13:46:51Z2009-08-28T18:32:23Z<p><strong>Unnamed boolean parameters to functions</strong>, especially when there is more than one. Here is such a function declaration (in a C-like pseudo language):</p>
<pre><code>cookBreakfast(boolean withEggs, boolean withToast, boolean withJuiceNotMilk);
</code></pre>
<p>The function call is incomprehensible:</p>
<pre><code>cookBreakfast(true, false, true);
</code></pre>
<p><strong>Solution</strong>: use enums or named parameters instead. How this is done will be language dependent.</p>
<pre><code>cookBreakfast(eEggsYes, eToastNo, eJuice);
</code></pre>
<p>or</p>
<pre><code>cookBreakfast( withEggs => true, withToast => false, withJuiceNotMilk => true);
</code></pre>
<p>or</p>
<pre><code>BreakfastOrder bo;
bo.withEggs = true; bo.withToast = false; bo.withJuiceNotMilk = true;
cookBreakast(bo);
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/127784#1277845Answer by Brian G for What are Code Smells? What is the best way to correct them?Brian G2008-09-24T15:15:09Z2009-08-28T17:54:10Z<p>How about code without indentation. I seen a friend of mine with a master's degree write software without indentation and using variables like x, x2 and y. He actually applied to a position at Microsoft and sent them a code sample like this. How fast do you think they tossed it in the garbage???</p>
<p>Code is for humans to read.</p>
<p>Please indent.</p>
<p>What would you do if you received un-indented code as a part of an interview?</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/128072#1280721Answer by James A. Rosen for What are Code Smells? What is the best way to correct them?James A. Rosen2008-09-24T16:04:30Z2008-09-24T16:04:30Z<p>The <a href="http://github.com/kevinrutherford/reek/" rel="nofollow">reek</a> project will help automatically check for code smells in Ruby.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/129193#1291931Answer by Steve B. for What are Code Smells? What is the best way to correct them?Steve B.2008-09-24T19:08:21Z2008-09-24T19:08:21Z<p>loops with lots of exit points:
for (...)
{<br />
if (... ) {
continue;
}
else if ( .. )
{
if (... ){
break;
}</p>
<p>}</p>
<p>}</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/129286#1292862Answer by Don Duty for What are Code Smells? What is the best way to correct them?Don Duty2008-09-24T19:22:38Z2008-09-24T19:22:38Z<p>Suggest you read
Refactoring: Improving the Design of Existing Code
by Martin Fowler, Kent Beck, John Brant, and William Opdyke (Hardcover - Jul 8, 1999)</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/129602#129602-4Answer by Remi Meier for What are Code Smells? What is the best way to correct them?Remi Meier2008-09-24T20:12:16Z2008-09-24T20:12:16Z<p><strong>Break and Continue are the same as GoTo</strong></p>
<p>One should be able to look at the head or tail of a loop to immediately be able to tell under what conditions it terminates.</p>
<p>What to do:
Use descriptive (boolean) variables instead of a direct break/continue and test them in the appropriate place (head/tail) of the loop.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/130851#13085148Answer by Jim d for What are Code Smells? What is the best way to correct them?Jim d2008-09-25T00:44:38Z2009-08-28T17:19:54Z<h2>Methods with boolean arguments</h2>
<p>Methods with boolean boolean arguments tend to hurt readability. A common example I've seen is the following:</p>
<pre><code> myfile = CreateFile("foo.txt", true);
</code></pre>
<p>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:</p>
<pre><code> myfile = CreateTempFile("foo.txt");
</code></pre>
<p>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</p>
<pre><code> File CreateFile(String name, boolean isTemp);
</code></pre>
<p>becomes </p>
<pre><code> File CreateFile(String name);
File CreateTempFile(String name);
</code></pre>
<p><hr /></p>
<p>You can also get arround this by creating an enum:</p>
<pre><code>myFile = CreateFile("foo.txt", FileType.Temp);
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/132213#1322130Answer by Marcin for What are Code Smells? What is the best way to correct them?Marcin2008-09-25T08:54:29Z2008-09-25T08:54:29Z<p>Any code that is repeated, or any instance when a variable is assigned more than once.</p>
<p>Both are appropriate in certain circumstances, and given the constraints of the environment, but still. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/139535#1395350Answer by Pablo for What are Code Smells? What is the best way to correct them?Pablo2008-09-26T13:34:05Z2008-09-26T13:34:05Z<p>Rediculous comments:</p>
<pre><code>catch
{
/*YES- THIS IS MEANT TO BE HERE! THINK ABOUT IT*/
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/143412#1434122Answer by smacl for What are Code Smells? What is the best way to correct them?smacl2008-09-27T10:59:26Z2008-09-27T10:59:26Z<p>Wow, most bad smells gone already. Ok in C++ how about <code>delete this</code>, whereby an object commits ritual hari kari without letting anyone else know. I've seen this used variously for watcher and status monitoring routines, and it often smells pretty bad, notably when there are references to the same object elsewhere in the program that aren't informed of the objects demise.</p>
<p>The way I usually refactor this is to make the object pointer a member of another object with broader scope, e.g. the application object. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/143438#143438-1Answer by smacl for What are Code Smells? What is the best way to correct them?smacl2008-09-27T11:14:57Z2008-09-27T11:14:57Z<p><strong>smell:</strong> Unnecessary recursion</p>
<p><strong>why:</strong> You've guessed it --> risk of <strong>stack overflow</strong> (had to get that one in)</p>
<p><strong>solutions:</strong></p>
<p>1) If you can, rewrite the recursive routine as an iterative routine, for example using divide and conquer techniques.</p>
<p>2) If not, examine the stack frame usage and try to minimise, for example by changing from breadth first to depth first analysis on a tree.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/146556#14655610Answer by Vilmantas Baranauskas for What are Code Smells? What is the best way to correct them?Vilmantas Baranauskas2008-09-28T19:36:51Z2008-09-28T19:36:51Z<p><strong>Unused variables or fields.</strong></p>
<p>Remove them. There are helper tools (different <a href="http://www.jetbrains.com/idea/" rel="nofollow">IDE</a>s, <a href="http://checkstyle.sourceforge.net/" rel="nofollow">checkstyle</a>, etc.) which may inform you if you have some.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/154144#1541442Answer by Mike Dunlavey for What are Code Smells? What is the best way to correct them?Mike Dunlavey2008-09-30T17:37:22Z2008-10-07T20:43:47Z<p><strong>Too many classes, too many objects, too many event-like actions</strong></p>
<p>Not every noun should be a class, and not every verb should be a method. If an object doesn't exist to capture and retain user input, be sure you really really need it.</p>
<p>Examples:</p>
<p>If you are given an array of x,y points, and you want to produce a graph, chances are all you need is a routine to <em>draw</em> it, not <em>build</em> it out of point and line objects.</p>
<p>If you have a tree structure, and there is a property of the tree that depends on properties of its subtrees, chances are all you need are functions that sweep through the tree, not a whole lot of event-handling to propogate change events from children upward.</p>
<p>Register and Unregistering anything smells because those are events whose purpose usually is to incrementally maintain correspondence between things. The rationale is usually to save cycles. Machines are incredibly fast these days. You could possibly just rebuild the structure in less time than you would ever notice, and it would take a whole lot less code and bugs. Another way is to get good at Diff-type algorithms to maintain correspondences.</p>
<p>Back pointers smell. Usually the reason is to save cycles. Then you need unit tests to try to prove that they never get inconsistent. If you design the data structure so there's almost no way you can change it to something inconsistent, then there's almost nothing to unit test.</p>
<p>Everybody loves object-oriented programming, right? But don't let that mean the more objects the better! Let it mean the fewer objects the better. Just because event- or message-based programming is a good way to handle certain problems, don't let that mean it's the ideal paradigm for everything. One may think they're saving cycles, but every cycle saved costs a 100 in managing complexity. Usually this turns into a creaky monstrosity that is never quite right because of messages being forgotten or duplicated or happening at the wrong times.</p>
<p>Comment written on a proposal of mine by my boss, a long time ago: <strong>KISS</strong>. "What's that mean?" I asked. "Keep It Simple, Stupid!" was the reply. Been living by that ever since.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/157033#1570331Answer by tpower for What are Code Smells? What is the best way to correct them?tpower2008-10-01T10:35:48Z2008-10-01T10:43:31Z<p><strong>Protected Member Variables</strong></p>
<p>The only place I have ever come across these is when I find the source of bug.</p>
<p>When these are used in code there is normally no distinction between a private member and a protected member. A developer could easily change its value thinking they can see all uses of it in the current class so it wouldn't cause a problem.</p>
<p>You can replace <code>protected</code> with <code>private</code> and add some protected accessors functions. Developers are used to calling base class functions so it would be easier to understand what is happening.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/171711#1717114Answer by jlouis for What are Code Smells? What is the best way to correct them?jlouis2008-10-05T08:45:14Z2009-08-28T18:08:20Z<p>Lack of abstraction.</p>
<ul>
<li><p><strong>Description</strong>: the code is written such that everything happens on the same level. There is no separation between different concerns and no splitting into parts.</p></li>
<li><p><strong>Key indicators</strong>: you suddenly find presentation code in the business layer, or you find business code in the data access layer. The line count of a feature is much too big for what it does. The code space looks 'flat' and you don't find yourself having to look up and down the chain of abstraction.</p></li>
<li><p><strong>Fixing</strong>: refactoring is key as always. Define your abstraction layers; for instance data access, business logic and presentation. Then slowly begin pushing code into the right layer when you find it. Suddenly other code smells will show up in each abstraction layer (code duplication is common) making it possible to further simplify the code. It is very much possible to refactor such code into elegance.</p></li>
</ul>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/176042#1760422Answer by Osama ALASSIRY for What are Code Smells? What is the best way to correct them?Osama ALASSIRY2008-10-06T20:24:30Z2009-01-30T19:23:13Z<p>I hate it when I see code like this:</p>
<pre><code>if (a==b){
//Do This
if (c==d) {
//Do That
}
else
{
//Something Else
}
}
else
{
//Do This Again
if (c==d) {
//Do That Other Thing
}
else
{
//Something Else Again
}
}
</code></pre>
<p>especially if most of the code is common between the cases.</p>
<p>it looks much nicer if we convert the code to separate functions instead of copy paste, and write something simpler like:</p>
<pre><code>dothis();
if (c==d)
if (a==b) dothat() else dothatotherthing();
else
dosomethingelse();
</code></pre>
<p>All we need to do is analyze the logic, and simplify the code. encapsulating code in small functions with descriptive names is always a good thing to do.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/178384#1783841Answer by rjarmstrong for What are Code Smells? What is the best way to correct them?rjarmstrong2008-10-07T13:16:09Z2008-10-07T13:16:09Z<p>Ignoring all the fundementals or any particular construct; if it feels wrong then you've just got a whiff of a smell. Why - well because you will need to use the code you've just made and that 'wrong' feeling will give you little confidence when using it. A second opinion may be required if you're having trouble refactoring.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/180427#1804272Answer by jay_swift for What are Code Smells? What is the best way to correct them?jay_swift2008-10-07T21:07:15Z2008-10-07T21:07:15Z<pre><code>// This should never happen.
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/185935#185935-4Answer by Abarax for What are Code Smells? What is the best way to correct them?Abarax2008-10-09T04:22:29Z2008-10-09T04:22:29Z<p>God objects.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/208573#2085730Answer by James McMahon for What are Code Smells? What is the best way to correct them?James McMahon2008-10-16T13:33:44Z2008-10-16T13:33:44Z<p>Apologies if this was already mentioned, but I just looked through the answers and didn't see this mentioned.</p>
<p>Code Coupling can make maintenance a nightmare. If you have display code directly tied into with other logic, making anything but routine maintenance will be all but impossible.</p>
<p>When you are designing your display code, think long and hard about your design and try to keep the design part separate from the rest of your app.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/212540#2125400Answer by onedaywhen for What are Code Smells? What is the best way to correct them?onedaywhen2008-10-17T15:03:26Z2008-10-17T15:03:26Z<h2>Writing procedural code against a DBMS</h2>
<p><strong>Smell</strong>: looping through an ordered resultset using a cursor in SQL (or walking an ordered recordset in middleware, etc) aggregating values, setting values based on other values, etc.</p>
<p><strong>Possible problem</strong>: the coder hasn't looked for a set based solution. Put another way, they haven't yet had the epiphany that SQL is a declarative language and a SQL DML statement is more like a spec than a piece of code e.g. when I write...</p>
<pre><code>UPDATE MyTable
SET my_column = 100
WHERE my_column > 100;
</code></pre>
<p>...I'm telling the DBMS <em>what</em> to do rather than <em>how</em> to do it. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/223881#22388132Answer by hlovdal for What are Code Smells? What is the best way to correct them?hlovdal2008-10-21T23:06:54Z2008-10-21T23:06:54Z<p><strong>Smell:</strong> Testing of "normal" code instead of exceptions.</p>
<p><strong>Problem:</strong> The "normal operation" or most commonly/naturally executed code is put inside if bodies or attached as an else body to
some error checking.</p>
<p><strong>Solution:</strong> 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.</p>
<p><em>Examples:</em></p>
<pre><code>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");
}
}
</code></pre>
<p><hr /></p>
<pre><code>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
*/
}
</code></pre>
<p><hr /></p>
<pre><code>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);
}
}
}
}
}
</code></pre>
<p><hr /></p>
<pre><code>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);
}
}
</code></pre>
<p><hr /></p>
<p><strong>Rule of thumb</strong>: Never test the normal case, test exceptions.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/227373#2273730Answer by Kon M for What are Code Smells? What is the best way to correct them?Kon M2008-10-22T20:16:22Z2008-10-22T20:16:22Z<p>A large number of Ifs or Cases usually begs for creation of new classes that extend some base class.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/264203#2642032Answer by jfpoilpret for What are Code Smells? What is the best way to correct them?jfpoilpret2008-11-05T02:32:11Z2008-11-05T02:32:11Z<p>Catching an exception to just rethrow it, in the same form or another form.</p>
<p>It is very common (unfortunately) to meet this kind of code (Java) with 3 different ways to (not) deal with caught exceptions:</p>
<pre><code>try {
...
} catch (ExceptionA e) {
throw e;
} catch (ExceptionB e) {
log exception
throw e;
} catch (ExceptionC e) {
throw new RuntimeExceptionC(e);
}
</code></pre>
<p>This code is plain useless: if you don't know what to do with an exception then you should let it pass through to the caller. Moreover, this bloats the code and hinders readability.</p>
<p>Note that in the third case (throw new RuntimeExceptionC(e);), we can argue in some specific cases where this <em>might</em> be useful (normally rare however).</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/264246#2642460Answer by Peter for What are Code Smells? What is the best way to correct them?Peter2008-11-05T03:05:51Z2008-11-05T03:05:51Z<p><strong>Second-guessing assertions.</strong></p>
<p>Ran across this recently:</p>
<pre><code>assert(vector.size() == 1);
for(int i = 0; i < vector.size(); ++i) {
do_something(vector[i]);
}
</code></pre>
<p>If you're asserting that there's only one item in the vector, you don't need the loop:</p>
<pre><code>assert(vector.size() == 1);
do_something(vector.front());
</code></pre>
<p>I don't want to go into lots of boring detail; there was a good reason for having the vector for other cases, but in this branch of the code it should have always had size 1.</p>
<p>Obviously it's not a hard and fast rule, but to me it increases the complexity of the code (introducing a loop, another level of indentation) when you're saying that you don't ever expect to need it.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/266052#2660520Answer by shyamsundar for What are Code Smells? What is the best way to correct them?shyamsundar2008-11-05T18:01:13Z2008-11-05T18:01:13Z<p>Lifecycle methods in classes</p>
<pre><code>class Life {
private boolean initialized = false;
public void init() {
try {
// ...
initialized = true;
} catch (XXXException e) {
// ...
}
}
public void doSomething() {
if ( !initialized ) {
throw XXLException(...);
// instead call init() and continue
}
// ...
}
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/293937#2939370Answer by Pride Fallon for What are Code Smells? What is the best way to correct them?Pride Fallon2008-11-16T14:51:54Z2008-11-16T14:51:54Z<p>A quick search suggests that this post is the first identification of the code smell "Intelliscents": </p>
<p>Extravagantly roundabout code bespeaking the typist's lack of familiarity with the classes and established idioms of some .net namespace, and his/her reliance on Intellisense to solve a problem at hand.</p>
<p>And my code is redolent with (of?) it.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/300946#3009463Answer by Darren for What are Code Smells? What is the best way to correct them?Darren2008-11-19T03:52:45Z2008-11-19T03:52:45Z<p><strong>Many Helper Classes</strong></p>
<p>Prolific use of helper type classes. I'm defining a helper class as one that contains a bunch of related methods that do some common task. They are typically used when you find yourself repeating the same type of code over and over again.</p>
<p>I believe that this either points to lazy coders not thinking about the best place to put the code in the existing API or a failure of the API itself not providing decent default behavior.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/347408#34740827Answer by Norman Ramsey for What are Code Smells? What is the best way to correct them?Norman Ramsey2008-12-07T09:07:00Z2008-12-07T09:07:00Z<p>Treating Booleans as magical, unlike other values. When I see</p>
<pre><code>if (p)
return true;
else
return false;
</code></pre>
<p>I know I'm seeing a rookie coder and prepare myself accordingly. I strongly prefer</p>
<pre><code>return p;
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/347412#3474125Answer by Norman Ramsey for What are Code Smells? What is the best way to correct them?Norman Ramsey2008-12-07T09:13:32Z2009-08-28T17:57:54Z<p>Comments often make code smell. Steve McConnell said it before me, but</p>
<ol>
<li>Comments on functions and code can almost all be eliminated by choosing names and types well.</li>
<li>Comments on data are often helpful. Beginners can be told to comment every type definition and variable declaration. This is overkill but is a good rule of thumb and is way better than commenting code.</li>
<li>Even better comments are just ones that describe the <strong>representation invariants</strong> of data and say <strong>what abstraction the data is intended to represent</strong>.</li>
<li>If the representation invariant is not completely trivial, the best documentation is an internal function which validates that the data actually satisfy the representation invariant. Good example: ordered binary trees. Better: <em>balanced</em>, ordered binary trees. In this case you write the code to check the invariant and the comment just says that every value of the given type satisfies the invariant.</li>
</ol>
<p>Summary: strive to move information from comments into code!</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/347416#3474160Answer by Norman Ramsey for What are Code Smells? What is the best way to correct them?Norman Ramsey2008-12-07T09:16:51Z2008-12-07T09:16:51Z<p>Structure or class with a dozen or more member fields. There is probably not a coherent abstraction here. To remove the smell, break the structure or class into pieces. A good source of ideas is <a href="http://publications.csail.mit.edu/lcs/pubs/pdf/MIT-LCS-TR-711.pdf" rel="nofollow">Raymie Stata's dissertation.</a>.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/347418#3474182Answer by Norman Ramsey for What are Code Smells? What is the best way to correct them?Norman Ramsey2008-12-07T09:19:21Z2008-12-07T09:19:21Z<p>In OO languages, private members exposed through getter and setter methods. I'm frightened how many times I've seen students write code with members that are supposedly private but can be read or written through public getter and setter methods. Such classes 'expose the rep' just as thoroughly as public members, but with a lot more cognitive overhead.</p>
<p>Remove the smell by figuring out what secret the module or class is supposed to hide and reducing the number of methods accordingly.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/427940#4279406Answer by Khainestar for What are Code Smells? What is the best way to correct them?Khainestar2009-01-09T12:49:00Z2009-01-09T13:20:08Z<p><strong>Assumptive code.</strong></p>
<p>Code that assumes something has happened before it, or assumes that a value has been set. I know some compilers like to tell you about it but I have seen this very widespread in PHP in particular. An example.</p>
<pre><code>if ( $foo == 'bar' ) {
$bar = true;
}
if ( $bar ) {
// code...
}
</code></pre>
<p>This becomes a huge problem when poor structure doesn't create objects. Then later code starts using the objects, or worse someone directly sets values into an object that doesn't exist and PHP helpfully creates a standard object, with the value in it. So later checks for is_object return true.</p>
<p><strong>Solution.</strong></p>
<p>If you are going to start using an object make sure that it actually exists. </p>
<pre><code>$object->foo='bar';
</code></pre>
<p>Will create an object but it won't be the object that you think it is. Accessors are there for a reason. Use them when ever possible. This also removes the problem of assuming something is there to use as the script will error out and then it has to be fixed. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/428148#4281483Answer by Wix for What are Code Smells? What is the best way to correct them?Wix2009-01-09T14:05:50Z2009-01-09T14:05:50Z<p>A common thing I see with new programmers is having 20 includes at the top of a header file. I found that the developer is trying to do too much in one class/file (depending on language) or they are calling everything in an assembly to simply use one object/method/whatever in it.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/455294#4552945Answer by orj for What are Code Smells? What is the best way to correct them?orj2009-01-18T15:17:16Z2009-08-28T18:15:14Z<p><strong>Classes or structs with lots of member variables.</strong></p>
<p>A class or struct with more than about a dozen member variables probably hasn't been correctly factored into sub-components/classes.</p>
<p>eg:</p>
<pre><code>class Person
{
string Name;
string AddressLine1;
string AddressLine2;
string AddressLine3;
string Addressline4;
string City;
string ZipCode;
string State;
string Country;
string SpouseName;
string ChildName1;
string ChildName2;
string ChildName3;
int Age;
// and on and on and on
}
</code></pre>
<p>Should be:</p>
<pre><code>class Address
{
string[] AddressLines;
string ZipCode;
string State;
string Country;
}
class Person
{
string Name;
Address Address;
Person Spouse;
Person[] Children;
int Age;
}
</code></pre>
<p>And this is just one contrived example.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/496923#4969232Answer by Sridhar Iyer for What are Code Smells? What is the best way to correct them?Sridhar Iyer2009-01-30T19:43:44Z2009-01-30T19:43:44Z<p><strong>Global variables</strong></p>
<p>Normally most developers with even a thimble worth of knowledge stay away from them. But somewhere down the line, in some year, somebody inevitably adds one to short circuit some logic or just get a legacy system to work.. further down the line this causes issues in threaded systems which are caught much much later and almost too easily escape regression tests.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/609484#6094840Answer by thomasrutter for What are Code Smells? What is the best way to correct them?thomasrutter2009-03-04T06:51:08Z2009-03-04T06:51:08Z<p><strong>A comment containing the word TODO</strong></p>
<pre><code>{
//TODO clean this up a bit
if (klwgh || jkhdfgdf || ksdfjghdk || bit << 8 == askfhsdkl)
if (klusdhfg)
return 1 + blah;
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/675038#6750385Answer by Comptrol for What are Code Smells? What is the best way to correct them?Comptrol2009-03-23T20:09:56Z2009-03-23T20:09:56Z<p>This is from "<a href="http://www.gigamonkeys.com/book/practical-a-simple-database.html" rel="nofollow">Practical Common Lisp</a>"</p>
<blockquote>
<p>A friend of mine was once interviewing
an engineer for a programming job and
asked him a typical interview
question: how do you know when a
function or method is too big? Well,
said the candidate, I don't like any
method to be bigger than my head. You
mean you can't keep all the details in
your head? No, I mean I put my head up
against my monitor, and the code
shouldn't be bigger than my head.</p>
</blockquote>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/748210#7482103Answer by Khainestar for What are Code Smells? What is the best way to correct them?Khainestar2009-04-14T15:48:13Z2009-04-14T15:48:13Z<p>Another one that has raised its head lately. Three state booleans. Yep you heard me right, three state booleans. Database fields set to be a boolean but allow null. So you can get true, false and null from them. Then code that checks not only for value but also type. Since 3 state booleans don't exist this causes some major headaches.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/778285#7782855Answer by John for What are Code Smells? What is the best way to correct them?John2009-04-22T17:14:05Z2009-04-22T17:14:05Z<p><strong>Magic Strings</strong></p>
<p>I've seen Magic numbers mentioned here more than once and I wholeheartedly agree. One often overlooked smell I haven't seen mentioned is <strong><em>Magic Strings</em></strong>.</p>
<p><strong>Example:</strong></p>
<pre><code>
public string GetState()
{
return "TN";
}
</code></pre>
<p><strong>Solution:</strong></p>
<pre><code>
public string GetState()
{
return States.TN;
}
</code></pre>
<p>Always be weary of code that is working with hard coded string data just as you would with hard coded numeric data. Consider making the string a constant variable with a comment explaining what it represents as a minimum. There is a really good chance that this should actually be in an Enumeration.</p>
<p>Side note:
It's not technically a smell but it greatly annoys me to see something like this as well:</p>
<pre><code>
if(0 == foo)
{
DoSomething();
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/867002#8670021Answer by zonkflut for What are Code Smells? What is the best way to correct them?zonkflut2009-05-15T04:43:31Z2009-05-15T04:43:31Z<p>Annother Double negative issue in C#</p>
<p><code>if (!!IsTrue) return value;</code></p>
<p>I have seen he double <code>!</code> cause bugs in the past.</p>
<p>instead remove the <code>!!</code> to avoid confusion</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/1047313#10473130Answer by jrista for What are Code Smells? What is the best way to correct them?jrista2009-06-26T04:21:33Z2009-06-26T04:21:33Z<h1>Encapsulated Dependencies</h1>
<p><strong>The Smell</strong></p>
<p>When dependencies are directly instantiated within the dependent class, managing those dependencies rapidly becomes a maintenance nightmare. In addition, when dependency management is fully encapsulated within the dependent class, mocking those dependencies for unit testing is impossible, or at best extremely difficult (and requires things like full-trust reflection in .NET.)</p>
<p><strong>Solution: Dependency Injection</strong></p>
<p>The use of <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">Dependency Injection (DI)</a> can be used to solve most dependency management issues. Rather than directly instantiating dependencies within the dependent class, dependencies are created externally and passed into the dependent class via a constructor, public setter properties, or methods. This greatly improves dependency management, allowing more flexible dependencies to be provides to a single class, improving code reuse. This allows proper unit testing by allowing mocks to be injected.</p>
<p><strong>Better Solution: Inversion of Control Container</strong></p>
<p>A better solution than simply using dependency injection is to make use of an <a href="http://en.wikipedia.org/wiki/Inversion%5Fof%5Fcontrol" rel="nofollow">Inversion of Control (IoC)</a> <a href="http://www.castleproject.org/container/index.html" rel="nofollow">container</a>. Inversion of Control makes use of classes that support DI, in combination with extern dependency configuration, to provide a very flexible approach to wiring up complex object graphs. With an IoC container, a developer is able to create objects with complex hierarchical dependency requirements without needing to repeatedly and manually create all of the dependencies by hand. As IoC containers usually use external configuration to define dependency graphs, alternative dependencies may be provided as part of configuration and deployment, without the need to recompile code.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/1183690#11836901Answer by Kip for What are Code Smells? What is the best way to correct them?Kip2009-07-26T03:57:30Z2009-07-26T03:57:30Z<h2>Error messages when users perform perfectly valid actions</h2>
<p>I'm thinking of this one I saw when trying to change my password somewhere:</p>
<blockquote>
<p><i><strong>NOTE</strong>: Using a colon (“:”) in your password can create problems when logging in to Banner Self Service. If your password includes a colon, please change it using the PWManager link below.</i></p>
</blockquote>
<p><strong>Solution</strong>: Don't be lazy. Sanitize user input properly.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/1183703#11837033Answer by akf for What are Code Smells? What is the best way to correct them?akf2009-07-26T04:11:34Z2009-11-04T23:41:19Z<p><strong>Side-effecting getters:</strong></p>
<pre><code>public Object getMyObject() {
doSomethingThatModifiesSomething();
return myObject;
}
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/1249800#1249800-1Answer by Matthias Hryniszak for What are Code Smells? What is the best way to correct them?Matthias Hryniszak2009-08-08T20:25:15Z2009-08-08T20:25:15Z<h1>Methods returning constants</h1>
<p><hr /></p>
<ul>
<li><strong>The Smell</strong></li>
</ul>
<p>You see a function that always returns the same thing.</p>
<ul>
<li><strong>Additional observations</strong></li>
</ul>
<p>There's lots of classes implementing those methods just for other parts of the code to get the right value. Sometimes even constructors are being defined just to call the base/super/inherited constructor to pass on those constant parameters.</p>
<ul>
<li><strong>The solution</strong></li>
</ul>
<p>Change the method to return a value from a private field initialized in constructor and use the <strong>Factory</strong> pattern to construct the objects (for example using DI as a mega Factory pattern implementation in this case). This makes the inheritance structure in most cases obsolete. </p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/1348522#13485220Answer by obelix for What are Code Smells? What is the best way to correct them?obelix2009-08-28T17:59:32Z2009-11-04T23:40:37Z<p>Functions in C++ that take pointers as arguments and then check for NULL on the first line. Pass by reference or const-reference. Makes the contract so much clearer.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/1475099#14750990Answer by Jai for What are Code Smells? What is the best way to correct them?Jai2009-09-25T02:11:17Z2009-09-25T02:11:17Z<p>Multi function functions</p>
<p>If a function is doing more than one thing. This has been mentioned implicitly in other answers but it should get a mention on its own.</p>
<p>Example:</p>
<pre><code>// if function altList = null function returns a list of X ids
// if altList is set the function returns a list of objects of type Y
Function getData(searchStr, altList=null)
{
// common code
some code;
if(altList == null)
{
other code;
return array(int);
}
else
{
more other code;
return array(object y);
}
}
</code></pre>
<p>This really should be three functions:</p>
<ul>
<li>Public function that gets a list of
ids </li>
<li>Public function that gets a list
of object of type y </li>
<li>Private shared
function contains any common code.</li>
</ul>