主流的设计模式有23种设计模式,它们分为3大类,分别为:创建型设计模式(5种)、结构型设计模式(7种)和行为型设计模式(11种)。
##创建型设计模式
- 工厂方法模式 (factory method)
- 抽象工厂模式 (abstract factory)
- 建设者模式 (builder)
- 单例模式 (singleton)
- 原型模式 (prototype)
##结构型设计模式
- 适配器模式 (adapter)
- 装饰者模式 (decorator)
- 代理模式 (proxy)
- 外观模式 (facade)
- 桥接模式 (bridge)
- 组合模式 (composite)
- 享元模式 (flyweight)
##行为型设计模式
- 策略模式 (strategy)
- 模板模式 (template)
- 观察者模式 (observer)
- 迭代器模式 (iterator)
- 责任链模式 (chain of responsibility)
- 命令模式 (command)
- 备忘录模式 (memento)
- 状态模式 (state)
- 访问者模式 (visitor)
- 中介者模式 (mediator)
- 解释器模式 (interperter)