CPlusPlusThings/modern_C++_30/memorymodel_atomic/iazysingleton.cpp
Light-City 60af6600e4 update
2020-02-07 13:42:44 +08:00

20 lines
293 B
C++

//
// Created by light on 20-2-6.
//
class singleton {
private:
singleton() {}
static singleton *p;
public:
static singleton *instance();
};
singleton *singleton::p = nullptr;
singleton* singleton::instance() {
if (p == nullptr)
p = new singleton();
return p;
}