1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
class Single { public: static Single *instance(); ... private: static mutex lock_; static atomic<Single *> inst_ptr_; };
mutex Single::lock_; atomic<Single *> Single::inst_ptr_; Single *Single::instance() { Single *ptr = inst_ptr_.load(memory_order_acquire); if (ptr == nullptr) { lock_guard<mutex> guard{lock_}; ptr = inst_ptr_.load(memory_order_relaxed); if (ptr == nullptr) { ptr = new Single(); inst_ptr_.store(ptr, memory_order_release); } } return inst_ptr_; };
|