文章目录
- 1.设计模式的介绍
- 2.设计模式的分类
1.设计模式的介绍
设计模式最核心的作用的是:应对变化,提高复用。
现代软件设计的特征是“需求的频繁变化”。
设计模式的要点是:寻找变化点,然后在变化点处应用设计模式,从而来更好地应对需求的变化
什么时候、什么地点应用设计模式”比“理解设计模式结构本身”更为重要。
2.设计模式的分类
从封装变化角度对模式分类:
组件协作:
• Template Method
• Observer / Event
• Strategy
单一职责:
• Decorator
• Bridge
对象创建:
• Factory Method
• Abstract Factory
• Prototype
• Builder
对象性能:
• Singleton
• Flyweight
接口隔离:
• Façade
• Proxy
• Mediator
• Adapter
状态变化:
• Memento
• State
数据结构:
• Composite
• Iterator
• Chain of
Resposibility
行为变化:
• Command
• Visitor
领域问题:
• Interpreter