摘要: #include<bits/stdc++.h> using namespace std; template <typename T> class Singleton { public: static T * instance() { static T * instance =new T(); ret 阅读全文
posted @ 2022-09-01 09:46 lhclqslove 阅读(16) 评论(0) 推荐(0) 编辑