设计模式 Posted on 2019-06-30 Edited on 2023-03-02 In Computer Science Views: Design Pattern 单例模式 顾名思义就是某些类全局只需要一个实例。 饿汉模式 只要系统开始运行便创建实例,不管是否需要,需要时直接调用。 懒汉模式 12345678910111213class Singleton {public: static const Singleton* getInstance() { return instance; }private: // 禁止外部构造、析构、拷贝、赋值 Singleton() {} ~Singleton() {} Singleton(const Singleton& s); Singleton& operator=(const Singleton& s); static const Singleton* instance;}; 简单工厂模式 Reference 如何学习设计模式 线程安全的单例模式 C++单例 Donate WeChat Pay Alipay Post author: EIMadrigal Post link: https://eimadrigal.github.io/posts/design-pattern/ Copyright Notice: All articles in this blog are licensed under BY-NC-SA unless stating additionally.