feat:设计模式Meyers' Singleton去掉冗余代码,避免误导混淆
This commit is contained in:
parent
b3dd817d4f
commit
646f9e1836
@ -1,5 +1,7 @@
|
|||||||
//
|
//
|
||||||
// Created by light on 20-2-7.
|
// Created by light on 20-2-7.
|
||||||
|
// 在C++11标准下,《Effective C++》提出了一种更优雅的单例模式实现,使用函数内的 local static 对象。
|
||||||
|
// 这种方法也被称为Meyers' Singleton。
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
@ -8,7 +10,6 @@ using namespace std;
|
|||||||
|
|
||||||
class singleton {
|
class singleton {
|
||||||
private:
|
private:
|
||||||
static singleton *p;
|
|
||||||
singleton() {}
|
singleton() {}
|
||||||
public:
|
public:
|
||||||
static singleton &instance();
|
static singleton &instance();
|
||||||
|
Loading…
Reference in New Issue
Block a user