设计模式的总结
设计模式的分类:
- 工厂方法模式(Factory Method)
- 抽象工厂模式(Abstract Factory)
- 单例模式(Singleton)
- 原型模式(prototype)
- 建造者模式(Builder)
- 适配器模式(Adapter Pattern)
- 门面模式(Facade Pattern)
- 代理模式(Proxy pattern)
- 合成模式(Composite Pattern)
- 享元模式(Flyweight Pattern)
- 装饰着模式(Decorator Pattern)
- 桥模式(Bridge Pattern)
- 策略模式(Strategy Pattern)
- 迭代器模式(Iterator Pattern)
- 模板方法模式(Template Method Pattern)
- 中介者模式(Mediator Pattern)
- 访问者模式(Visitor Pattern)
- 职责链模式(Chain of Responsibility)
- 状态模式(State Pattern)
- 解释器模式(Interpreter Pattern)
- 观察者模式(Observer Pattern)
- 命令模式(Command Pattern)
- 备忘录模式(Memento Pattern)