首页 > 代码库 > 设计模式之C++实现(持续更新)

设计模式之C++实现(持续更新)

【创建型】

1、单例模式(Singleton Pattern)

2、工厂方法模式(Factory Method Pattern)

3、抽象工厂(Abstract Factory Pattern)

4、建造者模式(Builder Pattern)

5、原型模式(Prototype Pattern)

 

【结构型】

6. 适配器模式(Adapter Pattern)
7. 桥接模式(Bridge Pattern)
8. 装饰模式(Decorator Pattern)
9. 组合模式(Composite Pattern)
10. 外观模式(Facade Pattern)
11. 享元模式(Flyweight Pattern)
12. 代理模式(Proxy Pattern)