如何实现smart_ptr

前面文章已经介绍了如何实现一个简单的引用对象,在这里我将使用这个简单的引用计数对象来实现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
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值