首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴xyz2013的代码贴C++
//reference : <<Effective C++>> (Third Edition) [美]Scott Meyers 著.侯捷 翻译
/*
  泛化copy构造函数
*/
template<class T>
class SmartPtr{
public:
template<typename U>
SmartPtr(const SmartPtr<U>& other)
:heldPtr(other.get()){/**/}
T* get()const{return heldPtr;}
private
......................
阅读全部 | 2013年3月27日 18:22
1
xyz2013