摘要: template<typename T> class Singleton { public: static T& GetInstance() { static T instance; return instance; } virtual ~Singleton() { } Singleton(cons 阅读全文
posted @ 2024-04-16 08:51 快雪 阅读(2) 评论(0) 推荐(0) 编辑