C++11實現單例模式

1 線程不安全的單例模式 類的靜態成員變量由全部對象共享,也就是在內存中只有一份,咱們能夠利用這個特性憑直覺寫出以下的單例模式 class Singleton { public: static Singleton* getInstance(); Singleton(const Singleton& rhs) = delete; Singleton& operator=(const Singl
相關文章
相關標籤/搜索