内容简介
本书清晰地揭示了重构的过程,解释了重构的原理和最佳实践方式,并给出了何时以及何地应该开始挖掘代码以求改善。书中给出了70多个可行的重构,每个重构都介绍了一种经过验证的代码变换手法的动机和技术。本书提出的重构准则将帮助你一次一小步地修改你的代码,从而减少了开发过程中的风险。
本书适合软件开发人员、项目管理人员等阅读,也可作为高等院校计算机及相关专业师生的参考读物。
目录
Chapter 1:Refactoring,a First Example 重构,第一个例子
The Starting Point 起点
The First Step in Refactoring 重构第一步
Decomposing and Redistributing the Statement Method 分解并重组slalemenl 方法
Replacing the Conditional Logic on Price Code with Polymorphism 用多态代替价格条件逻辑代码
Final Thoughts 结语
Chapter 2:Principles in Refactoring 重构原则
Defining Refactoring 何谓重构
Why Should You Refactor? 为何重构
When Should You Refactor? 何时重构
What Do I Tell My Manager? 怎样说服经理
Problems with Refactoring 重构的问题
Refactoring and Design 重构与设计
Refactoring and Performance 重构与性能
Where Did Refactoring Come From? 重构的起源
Chapter 3:Bad Smells in Code(by Kent Beck and Martin Fowler) 代码坏昧 Duplicated Code 重复代码
Long Method 过长方法
Large Class 过长类
Long Parameter List 过长参数列表
Divergent Change 发散式变化
Shotgun Surgery 霰弹式修改
Feature Envy 特性依恋
Data Clumps 数据泥团
Primitive Obssion 基本类型偏执
Switch Statements switch语句
Parallel Inheritance Hierarchies 平行继承体系
Lazy Class 冗余类
Speculative Generality 理论上的一般性
Temporary Field 临时字段
Message Chains 消息链
Middle Man 中间人
Inappropriate Intimacy 过度亲密
Alternative Class with Different Interfaces 接口不同的等效类
Incomplete Library Class 不完整的库类
Data Class 数据类
Refud Bequest 拒绝继承
Comments 注释过多
Chapter 4:Building Tests 构建测试
The Value of Self-testing Code 自测试代码的重要性
The JUnit Testing Framework Junit测试框架
Adding More Tests 添加更多测试
Chapter 5:Toward a Catalog of Refactorings 重构目录
Format of the Refactorings 重构描述的格式
Finding References 寻找引用
How Mature Are The Refactorings? 这些重构的成熟度如何 Chapter 6:Composing Methods 组合方法
Extract Method 提取方法
Inline Method 内联方法
Inline Temp 内联临时变量
*Replace Temp with Query 用查询方法代替临时变量
Introduce Explaining Variable 引入解释性变量
Split Temporary Variable 分离临时变量
*Remove Assignments to Parameters 去除参数赋值
Replace Method with Method Object 用方法对象代替方法
Substitute Algorithm 替换算法
Chapter 7:Moving Features Between Objects 在对象之间移动特性 *Move Method 移动方法
Move Field 移动字段
Extract Class 提取类
Inline Class 内联类
Hide Delegate 隐藏委托类
Remove Middle Man 去除中间人
Introduce Foreign Method 引入外加方法
*Introduce Local Extension 引入本地扩展类
Chapter 8:Organizing Data 组织数据
Self Encapsulate Field 自封装字段
Replace Data Value with Object 用对象代替数据值
Change Value to Reference 将值对象改为引用对象
Change Reference to Value 将引用对象改为值对象
Replace Array with Object 用对象代替数组
Duplicate Obrved Data 重复被观察数据
*Change Unidirectional Associationto Bidirectional 将单向关联改为双向 Change Bidirectional Association to Unidirectional 将双向关联改为单向 *Replace Magic Number with Symbolic Constant 用字面常量代替魔数
Encapsulate Field 封装字段
Encapsulate Collection 封装集合
Replace Record with Data Class 用数据类代替记录
*ReplaceType Code with Class 用类代替类型码
Replace Type Code with Subclass 用子类代替类型码
Replace Type Code with State/Strategy用State/Strategy 代替类型码
Replace Subclass with Fields 用字段代替子类
Chapter 9:Simplifying Conditional Expressions 简化条件语句
Decompo Conditional 分解条件语句
Consolidate Conditional Expression 合并条件语句
Consolidate Duplicate Conditional Fragments 合并重复的条件片段
Remove Control Flag 去除控制标志
Replace Nested Conditional with Guard Claus 用守卫语句代替嵌套条件语句
Replace Conditional with Polymorphism 用多态代替条件语句
Introduce Null Object 引入Null对象
Introduce Asrtion 引入断言