Merge pull request #196 from L-Super/master

修复设计模式-单例的一些错误
This commit is contained in:
Francis 2022-04-10 16:31:31 +08:00 committed by GitHub
commit 88083a0b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 6 deletions

View File

@ -114,7 +114,7 @@ private:
static singleton *p;
static mutex lock_;
public:
singleton *instance();
static singleton *instance();
// 实现一个内嵌垃圾回收类
class CGarbo
@ -131,6 +131,7 @@ public:
singleton *singleton::p = nullptr;
singleton::CGarbo Garbo;
std::mutex singleton::lock_;
singleton* singleton::instance() {
if (p == nullptr) {

View File

@ -14,7 +14,7 @@ private:
static singleton *p;
static mutex lock_;
public:
singleton *instance();
static singleton *instance();
// 实现一个内嵌垃圾回收类
class CGarbo
@ -31,6 +31,7 @@ public:
singleton *singleton::p = nullptr;
singleton::CGarbo Garbo;
std::mutex singleton::lock_;
singleton* singleton::instance() {
if (p == nullptr) {

View File

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