23 种设计模式的英文名称
创建型(Creational Patterns)
- Singleton(单例)
- Factory Method(工厂方法)
- Abstract Factory(抽象工厂)
- Builder(建造者)
- Prototype(原型)
结构型(Structural Patterns)
- Adapter(适配器)
- Bridge(桥接)
- Composite(组合)
- Decorator(装饰器)
- Facade(外观)
- Flyweight(享元)
- Proxy(代理)
行为型(Behavioral Patterns)
- Template Method(模板方法)
- Strategy(策略)
- Observer(观察者)
- Iterator(迭代器)
- Chain of Responsibility(责任链)
- Command(命令)
- State(状态)
- Memento(备忘录)
- Mediator(中介者)
- Visitor(访问者)
- Interpreter(解释器)