2006年11月30日 星期四

[重構]簡化函式呼叫

1.Rename Method : 取個更合適的函式名

2.Add Parameter : 增加參數

3.Remove Parameter : 減少參數

4.Separate Query from Modifier : 將會回傳與會修改物件內部狀態的函式分開

5.Parameterize Method : 讓函式帶參數

6.Replace Parameter with Explicit Method : 以明確函式取代參數

7.Preserve Whole Object : 保持物件的完整

8.Replace Parameter with Method : 以函式取代參數

9.Introduce Parameter Object : 使用參數物件

10.Remove Setting Method : 去除不希望改變值的field的設值函式

11.Hide Method : 把不被其它class使用的method設為private或移除

12.Replace Constructor with Factory Method : 以Create method取代建構式

13.Encapsulate Downcast : 封裝向下轉型

14.Replace Error Code with Exception : 以錯誤碼來表示某些錯誤(異常)

15.Replace Exception with Test : 以測試取代異常

沒有留言: