美文网首页
c++ 单例模式模板类

c++ 单例模式模板类

作者: 51bitquant | 来源:发表于2023-03-18 10:56 被阅读0次

//
// Created by 51bitquant on 2023/3/19.
//

ifndef IO_SINGLETON_H

define IO_SINGLETON_H

include <cstdlib>

template <typename T>
class Singleton {
public:
static T& getSingleton() {
if(!instance_.get()) {
instance_ = std::unique_ptr<T>(new T);
}
return *(instance_.get());
}
private:
static std::unique_ptr<T> instance_;
Singleton();
Singleton(const Singleton<T> & other);
Singleton & operator=(const Singleton<T> & other);

};

template <typename T>
std::unique_ptr<T> Singleton<T>::instance_ = nullptr;

template <typename T>
class Singleton1 {
public:
static T& getSingleton() {
init();
return instance_;
}
private:
static void init() {
if (instance_ == nullptr) {
instance_ = new T;
atexit(destroy);
}
}
static void destroy() {
delete instance_;
}
static T
instance_;
Singleton1();
Singleton1(const Singleton<T> & other);
Singleton1 & operator=(const Singleton<T> & other);

};

template <typename T>
T* Singleton1<T>::instance_ = nullptr;

endif //IO_SINGLETON_H

相关文章

  • Java基础(3)——抽象类和单例设计模式

    本节内容1.单例设计模式2.抽象类实现模板设计模式3.抽象类实现造房子 一、单例设计模式1.设计模式:对经常出现的...

  • 学而时习之单例模式

    本文主要说明单例模式的概念,应用,以及C++实现。 I、上帝视角看单例模式 1.1 单例模式特点 单例模式需要满足...

  • 单例模式

    单例模式及C++实现代码单例模式4种实现详解 c++11改进我们的模式之改进单例模式 单例模式(Singleton...

  • OC - 单例模式

    导读: 一、什么是单例模式 二、单例的作用 三、常见的单例类 四、自定义单例类的方法 一、什么是单例模式 单例模式...

  • 单例模式

    什么是单例模式? 一个类只允许创建一个实例,那个类就是单例类。这个模式就是单例模式。单例模式实现方式:饿汉式:实现...

  • 单例模式 ,简单工厂,抽象工厂

    1.单例模式 如果一个类始终只能创建一个实例,则这个类成为单例类,这种设计模式称为单例模式 使用单例模式的优势: ...

  • 第3章 创建型模式-单例模式

    ■ 饿汉式单例类 ■ 懒汉式单例类 ■ 单例模式的实例

  • 模板

    使用场景:设计单例类的时候,可以设计通用的单例类,使用模板。 KCBP中使用模板的地方:

  • C++ 单例模式

    本文介绍C++单例模式的集中实现方式,以及利弊 局部静态变量方式 上述代码通过局部静态成员single实现单例类,...

  • 单例模式

    1. 什么是单例模式? 创建单例类的方法叫单例模式. 单例类, 就是只能产生一个对象的类. 2. 为什么使用单例模...

网友评论

      本文标题:c++ 单例模式模板类

      本文链接:https://www.haomeiwen.com/subject/yomsrdtx.html