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