Code smells

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
m (Links)
m (Made the list alphabetical)
Line 15: Line 15:
  
 
== Catalogue ==
 
== Catalogue ==
 +
A alphabetical collection of code smells:
  
* [[Duplicate code smell]]
+
* [[Alternative classes with different interfaces smell]]
* [[Long method smell]]
+
* [[Comments smell]]
* [[Large class smell]]
+
* [[Data class smell]]
* [[Long parameter list smell]]
+
* [[Data clumps smell]]
 
* [[Divergent change smell]]
 
* [[Divergent change smell]]
* [[Shotgun surgery smell]]
+
* [[Duplicate code smell]]
 
* [[Feature envy smell]]
 
* [[Feature envy smell]]
* [[Data clumps smell]]
+
* [[Inappropriate intimacy smell]]
* [[Primitive obsession smell]]
+
* [[Incomplete library class smell]]
* [[Switch statement smell]]
+
* [[Large class smell]]
* [[Parallel inheritance hierarchies smell]]
+
 
* [[Lazy class smell]]
 
* [[Lazy class smell]]
* [[Speculative generality smell]]
+
* [[Long method smell]]
* [[Temporary field smell]]
+
* [[Long parameter list smell]]
 
* [[Message chain smell]]
 
* [[Message chain smell]]
 
* [[Middle man smell]]
 
* [[Middle man smell]]
* [[Inappropriate intimacy smell]]
+
* [[Parallel inheritance hierarchies smell]]
* [[Alternative classes with different interfaces smell]]
+
* [[Primitive obsession smell]]
* [[Incomplete library class smell]]
+
* [[Data class smell]]
+
 
* [[Refused bequest smell]]
 
* [[Refused bequest smell]]
* [[Comments smell]]
+
* [[Shotgun surgery smell]]
 +
* [[Speculative generality smell]]
 +
* [[Switch statement smell]]
 +
* [[Temporary field smell]]
  
 
== Links ==
 
== Links ==

Revision as of 09:40, 14 October 2009

"If it stinks, change it." --Kent Beck's grandma, discussing child-rearing philosophy.

The term code smells was invented by Kent Beck. Chapter 3 of Martin Fowler 1999 (co-authored by Beck) provides a good intro.

Code smells motivate Refactoring.

Beck needed a word that gave developers a license to change code because they felt like it; because they sensed something was aesthetically wrong with the code. He didn't want something that suggested precision or direct quantifiablilty:

One thing we won't try to do here is give you precise criteria for when a Refactoring is overdue. What we will do is give you indications that there is trouble that can be solved by refactoring. You will have to develop your own sense of how many instance variables is too manyinstance variables and how many lines of code in a method are too many lines. -- Martin Fowler 1999, p75.

Ultimately, Christopher Alexander is lurking beneath this idea:

As far as I am concerned, patterns and XP are "the first try" and "the second try" of Kent Beck to put Christopher Alexander's ideas into practice. Both of them are derivatives of the Alexanderian philosophy.
On Kent's second try, he very carefully avoided mentioning Alexander. Perhaps he thought that Alexander just confused people, and that it was better to avoid ideas like the QWAN. So, he invented a whole bunch of new vocabulary to convey these ideas, things like "Code smells" and Do the simplest thing that could possibly work. -- Ralph Johnson

Catalogue

A alphabetical collection of code smells:

Links


Personal tools