本書是經(jīng)典著作《重構》出版20年后的新版。書中清晰揭示了重構的過程,解釋了重構的原理和最佳實踐方式,并給出了何時以及何地應該開始挖掘代碼以求改善。書中給出了60多個可行的重構,每個重構都介紹了一種經(jīng)過驗證的代碼變換手法的動機和技術。本書提出的重構準則將幫助開發(fā)人員一次一小步地修改代碼,從而減少了開發(fā)過程中的風險。
本書適合軟件開發(fā)人員、項目管理人員等閱讀,也可作為高等院校計算機及相關專業(yè)師生的參考讀物。
1. 軟件開發(fā)大師的不朽經(jīng)典
2. 生動闡述重構原理和具體做法
3. 普通程序員進階到編程高手必須修煉的秘笈
重構,一言以蔽之,是在不改變外部行為的前提下,有條不紊地改善代碼。20 多年前,正是《重構:改善既有代碼的設計》第1 版的出版,使重構終于從編程高手們的小圈子走出,成為眾多普通程序員日常開發(fā)工作中不可或缺的一部分。如今,Martin Fowler 的《重構:改善既有代碼的設計》一書已經(jīng)成為全球有經(jīng)驗的程序員手中的利器,既可用來改善既有代碼的設計、提升軟件的可維護性,又可用于使既有代碼更易理解、煥發(fā)出新的活力。
這本備受關注的第2 版在第1 版的基礎上做了全面修訂,反映了編程領域業(yè)已發(fā)生的許多變化。第2 版中介紹的重構列表更加內聚,并用JavaScript 語言重寫了代碼范例。此外,第2 版中還新增了與函數(shù)式編程相關的重構范例,旨在教會讀者如何在沒有類的環(huán)境下開展重構。
新版沿襲了第1 版的結構,依次解釋什么是重構,為什么要重構,如何通過“壞味道”識別出需要重構的代碼,以及如何在實踐中成功實施重構(無論用的是什么編程語言)。
本書將幫助讀者:
● 理解重構的過程和重構的基本原則;
● 快速有效地應用各種重構手法,提升程序的表達力和可維護性;
● 識別代碼中能指示出需要重構的地方的“壞味道”;
● 深入了解各種重構手法,每個手法都包含解釋、動機、做法和范例4 個部分;
● 構建穩(wěn)固的測試,以支持重構工作的開展;
● 理解重構過程的權衡取舍以及重構存在的挑戰(zhàn)等。
本書凝聚了軟件開發(fā)社區(qū)專家多年摸索而獲得的寶貴經(jīng)驗,書中所蘊涵的思想和精華,值得反復咀嚼,而且往往能夠常讀常新。
馬丁?福勒(Martin Fowler) 軟件開發(fā)大師,ThoughtWorks的科學家。他是一位作家、演說者、咨詢師和泛軟件開發(fā)領域的意見ling袖。他致力于改善企業(yè)級的軟件設計,對設計以及支撐設計的工程實踐孜孜以求。他在重構、面向對象分析設計、模式、XP和UML等領域都有貢獻。著有《重構:改善既有代碼的設計》《分析模式》《領域特定語言》等經(jīng)典著作。
Chapter 1: Refactoring: A First Example / 重構,第一個示例 1
The Starting Point / 起點 1
Comments on the Starting Program / 對此起始程序的評價 3
The First Step in Refactoring / 重構的第一步 5
Decomposing the statement Function / 分解statement方法 6
Status: Lots of Nested Functions / 進展:大量嵌套函數(shù) 22
Splitting the Phases of Calculation and Formatting /
拆分計算階段與格式化階段 24
Status: Separated into Two Files (and Phases) /
進展:分離到兩個文件(和兩個階段) 31
Reorganizing the Calculations by Type / 按類型重組計算過程 34
Status: Creating the Data with the Polymorphic Calculator /
進展:使用多態(tài)計算器來提供數(shù)據(jù) 41
Final Thoughts / 結語 43
Chapter 2: Principles in Refactoring / 重構的原則 45
Defining Refactoring / 何謂重構 45
The Two Hats / 兩頂帽子 46
Why Should We Refactor / 為何重構 47
When Should We Refactor / 何時重構 50
Problems with Refactoring / 重構的挑戰(zhàn) 55
Refactoring, Architecture, and Yagni / 重構、架構和YAGNI 62
Refactoring and the Wider Software Development Process /
重構與軟件開發(fā)過程 63
Refactoring and Performance / 重構與性能 64
Where Did Refactoring Come From / 重構起源何處 67
Automated Refactorings / 自動化重構 68
Going Further / 延展閱讀 70
Chapter 3: Bad Smells in Code / 代碼的壞味道 71
Mysterious Name / 神秘命名 72
Duplicated Code / 重復代碼 72
Long Function / 過長函數(shù) 73
Long Parameter List / 過長參數(shù)列表 74
Global Data / 全局數(shù)據(jù) 74
Mutable Data / 可變數(shù)據(jù) 75
Divergent Change / 發(fā)散式變化 76
Shotgun Surgery / 霰彈式修改 76
Feature Envy / 依戀情結 77
Data Clumps / 數(shù)據(jù)泥團 78
Primitive Obsession / 基本類型偏執(zhí) 78
Repeated Switches / 重復的switch 79
Loops / 循環(huán)語句 79
Lazy Element / 冗贅的元素 80
Speculative Generality / 夸夸其談通用性 80
Temporary Field / 臨時字段 80
Message Chains / 過長的消息鏈 81
Middle Man / 中間人 81
Insider Trading / 內幕交易 82
Large Class / 過大的類 82
Alternative Classes with Different Interfaces / 異曲同工的類 83
Data Class / 純數(shù)據(jù)類 83
Refused Bequest / 被拒絕的遺贈 83
Comments / 注釋 84
Chapter 4: Building Tests / 構筑測試體系 85
The Value of Self-Testing Code / 自測試代碼的價值 85
Sample Code to Test / 待測試的樣例代碼 87
A First Test / 第一個測試 90
Add Another Test / 再添加一個測試 93
Modifying the Fixture / 修改測試夾具 95
Probing the Boundaries / 探測邊界條件 96
Much More Than This / 測試遠不止如此 99
Chapter 5: Introducing the Catalog / 介紹重構名錄 101
Format of the Refactorings / 重構的記錄格式 101
The Choice of Refactorings / 挑選重構的依據(jù) 102
Chapter 6: A First Set of Refactorings / 第一組重構 105
Extract Function / 提煉函數(shù) 106
Inline Function / 內聯(lián)函數(shù) 115
Extract Variable / 提煉變量 119
Inline Variable / 內聯(lián)變量 123
Change Function Declaration / 改變函數(shù)聲明 124
Encapsulate Variable / 封裝變量 132
Rename Variable / 變量改名 137
Introduce Parameter Object / 引入?yún)?shù)對象 140
Combine Functions into Class / 函數(shù)組合成類 144
Combine Functions into Transform / 函數(shù)組合成變換 149
Split Phase / 拆分階段 154
Chapter 7: Encapsulation / 封裝 161
Encapsulate Record / 封裝記錄 162
Encapsulate Collection / 封裝集合 170
Replace Primitive with Object / 以對象取代基本類型 174
Replace Temp with Query / 以查詢取代臨時變量 178
Extract Class / 提煉類 182
Inline Class / 內聯(lián)類 186
Hide Delegate / 隱藏委托關系 189
Remove Middle Man / 移除中間人 192
Substitute Algorithm / 替換算法 195
Chapter 8: Moving Features / 搬移特性 197
Move Function / 搬移函數(shù) 198
Move Field / 搬移字段 207
Move Statements into Function / 搬移語句到函數(shù) 213
Move Statements to Callers / 搬移語句到調用者 217
Replace Inline Code with Function Call / 以函數(shù)調用取代內聯(lián)代碼 222
Slide Statements / 移動語句 223
Split Loop / 拆分循環(huán) 227
Replace Loop with Pipeline / 以管道取代循環(huán) 231
Remove Dead Code / 移除死代碼 237
Chapter 9: Organizing Data / 重新組織數(shù)據(jù) 239
Split Variable / 拆分變量 240
Rename Field / 字段改名 244
Replace Derived Variable with Query / 以查詢取代派生變量 248
Change Reference to Value / 將引用對象改為值對象 252
Change Value to Reference / 將值對象改為引用對象 256
Chapter 10: Simplifying Conditional Logic / 簡化條件邏輯 259
Decompose Conditional / 分解條件表達式 260
Consolidate Conditional Expression / 合并條件表達式 263
Replace Nested Conditional with Guard Clauses /
以衛(wèi)語句取代嵌套條件表達式 266
Replace Conditional with Polymorphism / 以多態(tài)取代條件表達式 272
Introduce Special Case / 引入特例 289
Introduce Assertion / 引入斷言 302
Chapter 11: Refactoring APIs / 重構API 305
Separate Query from Modifier / 將查詢函數(shù)和修改函數(shù)分離 306
Parameterize Function / 函數(shù)參數(shù)化 310
Remove Flag Argument / 移除標記參數(shù) 314
Preserve Whole Object / 保持對象完整 319
Replace Parameter with Query / 以查詢取代參數(shù) 324
Replace Query with Parameter / 以參數(shù)取代查詢 327
Remove Setting Method / 移除設值函數(shù) 331
Replace Constructor with Factory Function / 以工廠函數(shù)取代構造函數(shù) 334
Replace Function with Command / 以命令取代函數(shù) 337
Replace Command with Function / 以函數(shù)取代命令 344
Chapter 12: Dealing with Inheritance / 處理繼承關系 349
Pull Up Method / 函數(shù)上移 350
Pull Up Field / 字段上移 353
Pull Up Constructor Body / 構造函數(shù)本體上移 355
Push Down Method / 函數(shù)下移 359
Push Down Field / 字段下移 361
Replace Type Code with Subclasses / 以子類取代類型碼 362
Remove Subclass / 移除子類 369
Extract Superclass / 提煉超類 375
Collapse Hierarchy / 折疊繼承體系 380
Replace Subclass with Delegate / 以委托取代子類 381
Replace Superclass with Delegate / 以委托取代超類 399
Bibliography / 參考文獻 405