处理概括关系(读书摘要——重构改善既有代码的设计)

原文链接:http://www.cnblogs.com/Tim-Yi/archive/2011/10/23/2222112.html

1.Pull Up Field(值域上移)

2.Pull Up Method(函数上移)

3.Pull Up Constructor Body(构造函数本体上移)

4.Push Down Method(函数下移)

5.Push Down Field(值域下移)

6.Extract Subclass(提炼子类)

7.Extract Superclass(提炼超类)

8.Extract Interface(提炼接口)

9.Collapse Hierarchy(折叠继承关系)

10.Form Template Method(塑造模板函数)

11.Replace Inheritance with Delegation(以委托取代继承)

12.Replace Delegation with Inheritance(以继承取代委托)

 

 

转载于:https://www.cnblogs.com/Tim-Yi/archive/2011/10/23/2222112.html

上一篇:linux – 使用binwalk提取所有文件


下一篇:javascript – 如何使用Perl的LWP提取网站的XML并保存在文件中?