Replace Method with Method Object
From CSSEMediaWiki
(Difference between revisions)
Brett Ward (Talk | contribs) m (Added an additional link, will probably expand this page using info from it later) |
|||
Line 15: | Line 15: | ||
== Additional Resources == | == Additional Resources == | ||
− | [http://sourcemaking.com/refactoring/replace-method-with-method-object SourceMaking.com] | + | * [http://sourcemaking.com/refactoring/replace-method-with-method-object SourceMaking.com] |
+ | * [http://www.c2.com/cgi/wiki?MethodObject Ward's Wiki: Method Object] |
Revision as of 00:41, 17 August 2009
You have a long method that uses local variables in such a way that you cannot apply Extract Method.
//class Order... double price() { double primaryBasePrice; double secondaryBasePrice; double tertiaryBasePrice; // long computation; ... }
Turn the method into its own object so that all the local variables become fields on that object. You can then decompose the method into other methods on the same object.
Additional Resources
* SourceMaking.com * Ward's Wiki: Method Object