C++设计模式总结

打印 上一主题 下一主题

主题 906|帖子 906|积分 2718

C++ 中常用的设计模式与其独特语言特性(如手动内存管理、模板、运算符重载等)结合,可以简化复杂逻辑的代码实现,以下是 20 种核心设计模式(实际上不到20种) 及其典型 C++ 实现示例:

一、创建型模式(简化对象创建)

1. 工厂模式(Factory Pattern)



  • 作用:解耦对象的创建逻辑与使用逻辑
  • 代码示例
    1. class Shape {
    2. public:
    3.     virtual ~Shape() = default;
    4.     virtual void draw() = 0;
    5. };
    6. class Circle : public Shape { /*...*/ };
    7. class Square : public Shape { /*...*/ };
    8. class ShapeFactory {
    9. public:
    10.     static Shape* createShape(const string& type) {
    11.         if (type == "circle") return new Circle();
    12.         else if (type == "square") return new Square();
    13.         return nullptr;
    14.     }
    15. };
    16. // 使用:
    17. Shape* obj = ShapeFactory::createShape("circle");
    18. obj->draw();
    复制代码
2. 单例模式(Singleton Pattern)



  • C++ 线程安全推荐实现
    1. class Singleton {
    2. private:
    3.     static Singleton* instance;
    4.     static mutex mtx;
    5.     Singleton() {} // 私有化构造函数
    6. public:
    7.     Singleton(const Singleton&) = delete;
    8.     Singleton& operator=(const Singleton&) = delete;
    9.     static Singleton* getInstance() {
    10.         if (instance == nullptr) {
    11.             lock_guard<mutex> lock(mtx); // 加锁
    12.             if (instance == nullptr) {   // 双重检查锁定
    13.                 instance = new Singleton();
    14.             }
    15.         }
    16.         return instance;
    17.     }
    18. };
    19. // 初始化静态成员:
    20. Singleton* Singleton::instance = nullptr;
    21. mutex Singleton::mtx;
    复制代码
3. 建造者模式(Builder Pattern)



  • 适用场景:分步骤创建复杂对象(如 GUI 组件)
    1. class Pizza {
    2. public:
    3.     void setDough(const string& dough) { /*...*/ }
    4.     void setSauce(const string& sauce) { /*...*/ }
    5. };
    6. class PizzaBuilder {
    7. public:
    8.     virtual ~PizzaBuilder() = default;
    9.     virtual void buildDough() = 0;
    10.     virtual void buildSauce() = 0;
    11.     virtual Pizza* getPizza() = 0;
    12. };
    13. class Chef {
    14. private:
    15.     PizzaBuilder* builder;
    16. public:
    17.     void makePizza(PizzaBuilder* b) {
    18.         builder = b;
    19.         b->buildDough();
    20.         b->buildSauce();
    21.     }
    22. };
    复制代码

二、结构型模式(处置惩罚对象组合关系)

4. 适配器模式(Adapter Pattern)



  • 用途:转换接口以兼容旧代码
    1. class LegacyRectangle { // 旧接口: 通过坐标画矩形
    2. public:
    3.     void draw(int x1, int y1, int x2, int y2) { /*...*/ }
    4. };
    5. class RectangleAdapter : public Shape {
    6. private:
    7.     LegacyRectangle adaptee;
    8. public:
    9.     void draw() override {
    10.         adaptee.draw(0, 0, 100, 100); // 适配到新接口
    11.     }
    12. };
    复制代码
5. 组合模式(Composite Pattern)



  • 树形结构示例
    1. class Component {
    2. public:
    3.     virtual ~Component() = default;
    4.     virtual void operation() = 0;
    5.     virtual void add(Component* c) {} // 默认空实现
    6. };
    7. class Leaf : public Component {
    8. public:
    9.     void operation() override { /*处理叶子节点*/ }
    10. };
    11. class Composite : public Component {
    12. private:
    13.     vector<Component*> children;
    14. public:
    15.     void operation() override {
    16.         for (auto& child : children) {
    17.             child->operation(); // 递归调用子节点
    18.         }
    19.     }
    20.     void add(Component* c) override { children.push_back(c); }
    21. };
    复制代码
6. 代理模式(Proxy Pattern - 如智能指针)



  • 通过 RAII 管理资源
    1. template <typename T>
    2. class SmartPointer {
    3. private:
    4.     T* raw_ptr;
    5. public:
    6.     explicit SmartPointer(T* ptr) : raw_ptr(ptr) {}
    7.     ~SmartPointer() { delete raw_ptr; }
    8.     T* operator->() { return raw_ptr; } // 代理指针运算符
    9. };
    10. // 使用:
    11. SmartPointer<MyClass> ptr(new MyClass());
    12. ptr->doSomething(); // 自动释放内存
    复制代码

三、举动型模式(对象间的通讯与职责分配)

7. 观察者模式(Observer Pattern)



  • 基于 C++11 的当代化实现
    1. #include <functional>
    2. #include <vector>
    3. class Subject {
    4. private:
    5.     vector<function<void(int)>> observers;
    6. public:
    7.     void attach(const function<void(int)>& obs) {
    8.         observers.push_back(obs);
    9.     }
    10.     void notify(int value) {
    11.         for (auto& obs : observers) {
    12.             obs(value); // 通知所有观察者
    13.         }
    14.     }
    15. };
    16. // 使用 lambda:
    17. Subject subject;
    18. subject.attach([](int val) { cout << "Observer1: " << val << endl; });
    19. subject.notify(42);
    复制代码
8. 计谋模式(Strategy Pattern)



  • 结合模板与函数对象
    1. template <typename T>
    2. class SortStrategy {
    3. public:
    4.     virtual void sort(vector<T>& data) = 0;
    5. };
    6. class QuickSort : public SortStrategy<int> {
    7. public:
    8.     void sort(vector<int>& data) override { /*快速排序实现*/ }
    9. };
    10. class Context {
    11. private:
    12.     SortStrategy<int>* strategy;
    13. public:
    14.     void setStrategy(SortStrategy<int>* s) { strategy = s; }
    15.     void execute(vector<int>& data) { strategy->sort(data); }
    16. };
    复制代码
9. 模板方法模式(Template Method)



  • 代码骨架延迟实现
    1. class DataProcessor {
    2. public:
    3.     void process() {
    4.         loadData();
    5.         analyze();     // 子类实现差异点
    6.         saveResult();
    7.     }
    8. protected:
    9.     virtual void analyze() = 0;
    10.     void loadData() { /*通用加载逻辑*/ }
    11.     void saveResult() { /*通用保存逻辑*/ }
    12. };
    13. class AudioProcessor : public DataProcessor {
    14. protected:
    15.     void analyze() override { /*音频分析算法*/ }
    16. };
    复制代码

四、C++ 特有模式

10. RAII 模式(资源获取即初始化)



  • 核心头脑:通过对象生命周期主动管理资源(内存、文件、锁)
    1. class FileWrapper {
    2. private:
    3.     FILE* file;
    4. public:
    5.     explicit FileWrapper(const char* filename) : file(fopen(filename, "r")) {}
    6.     ~FileWrapper() { if (file) fclose(file); }
    7.     // 禁用拷贝(或实现移动语义)
    8.     FileWrapper(const FileWrapper&) = delete;
    9.     FileWrapper& operator=(const FileWrapper&) = delete;
    10. };
    11. // 使用:
    12. {
    13.     FileWrapper file("data.txt"); // 文件自动关闭
    14. }
    复制代码
11. CRTP 模式(Curiously Recurring Template Pattern)



  • 静态多态优化性能
    1. template <typename Derived>
    2. class Base {
    3. public:
    4.     void interface() {
    5.         static_cast<Derived*>(this)->implementation();
    6.     }
    7. };
    8. class Derived : public Base<Derived> {
    9. public:
    10.     void implementation() { /*子类具体实现*/ }
    11. };
    12. // 调用:
    13. Derived d;
    14. d.interface(); // 调用Derived的实现,无虚函数开销
    复制代码
12. PIMPL 惯用法(减少头文件依赖)



  • 隐藏实现细节
    1. // Widget.h
    2. class Widget {
    3. public:
    4.     Widget();
    5.     ~Widget();
    6.     void doSomething();
    7. private:
    8.     struct Impl;  // 前向声明
    9.     unique_ptr<Impl> pImpl; // 实现细节隐藏
    10. };
    11. // Widget.cpp
    12. struct Widget::Impl {
    13.     int internalData;
    14.     void helperFunction() { /*私有函数实现*/ }
    15. };
    16. Widget::Widget() : pImpl(make_unique<Impl>()) {}
    17. Widget::~Widget() = default; // 需在cpp中定义(因unique_ptr删除不完整类型)
    复制代码

五、性能优化模式

13. 对象池模式(制止频繁创建烧毁)

  1. template <typename T>
  2. class ObjectPool {
  3. private:
  4.     queue<unique_ptr<T>> pool;
  5. public:
  6.     T* acquire() {
  7.         if (pool.empty()) {
  8.             return new T();
  9.         }
  10.         auto obj = std::move(pool.front());
  11.         pool.pop();
  12.         return obj.release();
  13.     }
  14.     void release(T* obj) {
  15.         pool.push(unique_ptr<T>(obj)); // 重用对象
  16.     }
  17. };
复制代码
14. 惰性初始化模式(延迟加载)

  1. class HeavyResource {
  2. private:
  3.     vector<BigData>* data = nullptr;
  4. public:
  5.     vector<BigData>& getData() {
  6.         if (data == nullptr) {
  7.             data = new vector<BigData>(/*加载大量数据*/);
  8.         }
  9.         return *data;
  10.     }
  11. };
复制代码

总结:何时选用哪些模式?

场景推荐模式需要隔离对象创建细节工厂模式、建造者模式全局唯一访问点设置单例模式 (谨慎使用)统一处置惩罚树形结构组合模式动态增减对象功能装饰器模式跨平台接口适配适配器模式、桥接模式事件驱动系统观察者模式、发布-订阅模式算法机动替换计谋模式、模板方法模式 设计模式的本质是 代码结构的经验总结,根据具体需求机动选用,切勿过分设计!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

张国伟

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表