feat:设计模式Meyers' Singleton去掉冗余代码,避免误导混淆

This commit is contained in:
LSuper 2022-02-23 17:04:09 +08:00
parent b3dd817d4f
commit 646f9e1836

View File

@ -1,5 +1,7 @@
//
// Created by light on 20-2-7.
// 在C++11标准下《Effective C++》提出了一种更优雅的单例模式实现,使用函数内的 local static 对象。
// 这种方法也被称为Meyers' Singleton。
//
#include <iostream>
@ -8,7 +10,6 @@ using namespace std;
class singleton {
private:
static singleton *p;
singleton() {}
public:
static singleton &instance();