类以
模板实现单例模式
模板实现单例模式单例模式有多种写法,下⾯⽤模板类以三种⽅式实现单例模式。1.懒汉模式#include <iostream>#include <stdio.h>#include <pthread.h>//懒汉模式template <typename T>class Singleston{public:static T* GetInstance(){if...
模板实现单例模式单例模式有多种写法,下⾯⽤模板类以三种⽅式实现单例模式。1.懒汉模式#include <iostream>#include <stdio.h>#include <pthread.h>//懒汉模式template <typename T>class Singleston{public:static T* GetInstance(){if...