# cpp-设计模式实现 **Repository Path**: EEPPEE_admin/cpp-impl-design-pattern ## Basic Information - **Project Name**: cpp-设计模式实现 - **Description**: c++ 设计模式实现 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-06-24 - **Last Updated**: 2024-10-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: design-pattern, cpp-design-pattern ## README # design pattern - dir docs - dir src - file CMakeLists.txt # build and run ```bash cmake -B build cmake --build build # ./run.sh # write your own shell script using CMakeLists.txt executable target ``` # check TODO: - that is infomation # REF LINKS: - https://developer.aliyun.com/article/1258697#:~:text=c%2B%2B%E5%B8%B8%E7%94%A8%E7%9A%84%E8%AE%BE%E8%AE%A1,%E5%BC%8F%E5%92%8C%E5%91%BD%E4%BB%A4%E6%A8%A1%E5%BC%8F%E7%AD%89%E3%80%82 - # impled - Factory 工厂模式 - Singleton 单例模式 - Brige 桥接模式 - Strategy 策略模式 - ResponseChain 责任链模式 - Observer 观察者模式 - TemplateMethod 模板方法模式 - Proxy 代理模式 - Adator 适配器模式 - Facade 外观模式