Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 955 Bytes

README.md

File metadata and controls

31 lines (28 loc) · 955 Bytes

设计模式

主流的设计模式有23种设计模式,它们分为3大类,分别为:创建型设计模式(5种)、结构型设计模式(7种)和行为型设计模式(11种)。

##创建型设计模式

  1. 工厂方法模式 (factory method)
  2. 抽象工厂模式 (abstract factory)
  3. 建设者模式 (builder)
  4. 单例模式 (singleton)
  5. 原型模式 (prototype)

##结构型设计模式

  1. 适配器模式 (adapter)
  2. 装饰者模式 (decorator)
  3. 代理模式 (proxy)
  4. 外观模式 (facade)
  5. 桥接模式 (bridge)
  6. 组合模式 (composite)
  7. 享元模式 (flyweight)

##行为型设计模式

  1. 策略模式 (strategy)
  2. 模板模式 (template)
  3. 观察者模式 (observer)
  4. 迭代器模式 (iterator)
  5. 责任链模式 (chain of responsibility)
  6. 命令模式 (command)
  7. 备忘录模式 (memento)
  8. 状态模式 (state)
  9. 访问者模式 (visitor)
  10. 中介者模式 (mediator)
  11. 解释器模式 (interperter)