Replace Method with Method Object

From CSSEMediaWiki
(Difference between revisions)
Jump to: navigation, search
Paul Williams (Talk | contribs)
(New page: 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; do...)
Newer edit →

Revision as of 21:10, 6 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.

Replace.gif

Additional Resources

[| SourceMaking.com]

Personal tools