标签:share_ptr

Templeate class T的构造函数参数

templeate share_ptr 想实现一shere_ptr,不知道怎么实现,求教。 template<class T> class SharedPtr { SharedPtr() { m_pT = new T(); } ~SharedPtr() { delete m_pT; }     T* m_pT; } 关键是T的构造函数……