代写C代码 代做C程序 C辅导 C家教

远程写代码 Debug 讲解答疑 不是中介,本人直接写

微信: ittutor QQ: 14061936 Email: ittutor@qq.com

导航

一个智能指针程序

 //SmartPtr.h

//Wang Bin 2006-06-07
#ifndef SMART_PTR_H
#define SMART_PTR_H
 
template <typename _T>
class SmartPtr{
public:
    SmartPtr(_T* p=0):m_Ptr(p),m_pCount(p?new unsigned int(1):0)
...
分页: 首页 1 尾页