本文主要介绍一个简单的引用计数实现体类,它被引用计数对象(请参考: http://blog.csdn.net/hello_wyq/archive/2006/07/07/888606.aspx)所使用。它私用继承了Noncopyable对象(请参考: http://blog.csdn.net/hello_wyq/archive/2006/07/07/888550.aspx),以便禁止对象的拷贝和赋值操作。
// Author : Wang yanqing
// Module : Smart pointer
// Version : 0.01
// Date : 03-Aug-2005
// Reversion:
// Date :
// EMail :
[email protected]
#ifndef _SMART_PTR_REFCNT_IMPL_H
#define _SMART_PTR_REFCNT_IMPL_H
#include <assert.h>
#include "Noncopyable"
template <typename T, typename U>
class RefCntImpl: private Noncopyable
{
long refCnt;
T *pt;
const U del;
virtual ~RefCntImpl(){}
public:
explicit RefCntImpl( T *_pt, const U &_del )
: refCnt( 1 ), pt( _pt ), del( _del )
{
assert( pt != NULL );
}
void incRefCnt()
{
assert( refCnt > 0 );
++ refCnt;
}
void decRefCnt()
{
assert( refCnt > 0 );
if ( --refCnt == 0 )
{
del( pt );
delete this;
}
}
inline T* get() const
{
return pt;
}
};
#endif