特牛网址导航

C++中的单例模式并非想像得这么简单_c++ 多线程访问单例 可重入-CSDN博客

网友收藏
文章浏览阅读827次。C++写单例模式v1版:class Singlon{ private: static Singlon * inst;public: static Singlon& instance() { if(inst != NULL) { return *inst; } _c++ 多线程访问单例 可重入