前面文章已經介紹了如何?一個簡單的引用對象,在這裡我將使用這個簡單的引用計數對象來實現smart_ptr,這個對於我們日後對象指標在容器中的使用是相當的方便的,希望能給網友帶來一些啟迪。對於指標的析構器,請參考:http://blog.csdn.net/hello_wyq/archive/2006/07/07/888743.aspx
// Author : Wang yanqing
// Module : Smart pointer
// Version : 0.01
// Date : 03-Aug-2005
// Reversion:
// Date :
// EMail : hello.wyq@gmail.com
#ifndef _SMART_PTR_H
#define _SMART_PTR_H
#include <memory>
#include "inc/smart_ptr_deleter.h"
#include "inc/smart_ptr_refcnt_obj.h"
template < typename T, typename U = SmartPtrDeleter<T> >
class SmartPtr
{
RefCntObj<T, U> ref;
public:
explicit SmartPtr( T *pt, const U &u = U() )
: ref( pt, u )
{
assert( pt != NULL );
}
template <typename Y>
explicit SmartPtr( std::auto_ptr<Y> & rhs, const U &u = U() )
: ref( rhs.get(), u )
{
assert( rhs.get() != NULL );
rhs.release();
}
inline T* operator ->() const
{
return ref.get();
}
inline T& operator *() const
{
return *ref.get();
}
inline bool operator !() const
{
return ref.get() == NULL;
}
template <typename Y, typename D>
inline bool operator ==( const SmartPtr<Y, D> &rhs ) const
{
return this == &rhs || ref.get() == rhs.ref.get();
}
template <typename Y, typename D>
inline bool operator !=( const SmartPtr<Y, D> &rhs ) const
{
return !(this == &rhs || ref.get() == rhs.ref.get());
}
template <typename Y, typename D>
inline bool operator <( const SmartPtr<Y, D> &rhs ) const
{
return ref.get() < rhs.ref.get();
}
template <typename Y, typename D>
inline bool operator >( const SmartPtr<Y, D> &rhs ) const
{
return ref.get() > rhs.ref.get();
}
template <typename Y, typename D>
inline void swap( SmartPtr<Y, D> &rhs )
{
if ( this == &rhs )
return;
ref.swap( rhs.ref );
}
};
#endif