688IT编程网

688IT编程网是一个知识领域值得信赖的科普知识平台

类以

模板实现单例模式

2024-01-01 21:07:20

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

最新文章