Long method smell

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
Line 2: Line 2:
  
  
The Long method code smell is a sign that you possibly need to take some part of your method and seperate it into another method. This action is known as the Extract Method
+
The Long method code smell is a sign that you possibly need to take some part of your method and seperate it into another method. This action is known as the [http://www.refactoring.com/catalog/extractMethod.html Extract Method]

Revision as of 04:53, 29 July 2008

"Object programs live best and longest with short methods. The payoffs of indirection - explanation, sharing and choosing - are supported by little methods. Everybody knows short is good." --Bad Smells


The Long method code smell is a sign that you possibly need to take some part of your method and seperate it into another method. This action is known as the Extract Method

Personal tools