设计模式分类
创建型:
单例模式(Singleton)、原型模式(Prototype)、建造者(Builder)
工厂方法模式(Factory Method)、抽象工厂模式(Abstract Factory)
结构型:
适配器模式(Adapter)、桥接模式(Bridge)
享元模式(Flyweight)、组合模式(Composite)
代理模式(Proxy)、门面模式(Facade)、装饰器模式(Decorator)
行为型:
模板方法模式(Template Method)、策略模式(Strategy)
迭代器模式(Iterator)、备忘录模式(Memmento)、访问者模式(Visitor)
中介者模式(Mediator)、解释器模式(Interpreter)、观察者模式(Observer)
命令模式(Command)、状态模式(State)、责任链模式(Chain of Responsibility)
设计模式对比及编程思想总结