Code smells
From CSSEMediaWiki
(Difference between revisions)
m (Made the list alphabetical) |
m (Fixed spelling (do these people not use Preview?)) |
||
Line 43: | Line 43: | ||
* [http://sis36.berkeley.edu/projects/streek/agile/bad-smells-in-code.html#Comments A short description] of some of these smells. | * [http://sis36.berkeley.edu/projects/streek/agile/bad-smells-in-code.html#Comments A short description] of some of these smells. | ||
− | * [http://www.soberit.hut.fi/sems/shared/deliverables_public/mmantyla_thesis_final.pdf|A thesis on smells] | + | * [http://www.soberit.hut.fi/sems/shared/deliverables_public/mmantyla_thesis_final.pdf| A thesis on smells] |
− | * [http://www.soberit.hut.fi/mmantyla/BadCodeSmellsTaxonomy.htm| | + | * [http://www.soberit.hut.fi/mmantyla/BadCodeSmellsTaxonomy.htm| Five smell categories] |
− | * [http://wiki.java.net/bin/view/People/SmellsToRefactorings|Java.Net on smells] | + | * [http://wiki.java.net/bin/view/People/SmellsToRefactorings| Java.Net on smells] |
− | * [http://www.codinghorror.com/blog/archives/000589.html|Coding Horror] | + | * [http://www.codinghorror.com/blog/archives/000589.html| Coding Horror] |
{{Template:CodeSmells}} | {{Template:CodeSmells}} | ||
[[Category:Code smells]] | [[Category:Code smells]] |
Revision as of 03:27, 16 July 2010
"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:
- Alternative classes with different interfaces smell
- Comments smell
- Data class smell
- Data clumps smell
- Divergent change smell
- Duplicate code smell
- Feature envy smell
- Inappropriate intimacy smell
- Incomplete library class smell
- Large class smell
- Lazy class smell
- Long method smell
- Long parameter list smell
- Message chain smell
- Middle man smell
- Parallel inheritance hierarchies smell
- Primitive obsession smell
- Refused bequest smell
- Shotgun surgery smell
- Speculative generality smell
- Switch statement smell
- Temporary field smell
Links
- A short description of some of these smells.
- A thesis on smells
- Five smell categories
- Java.Net on smells
- Coding Horror