如何?smart_ptr

來源:互聯網
上載者:User
前面文章已經介紹了如何?一個簡單的引用對象,在這裡我將使用這個簡單的引用計數對象來實現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
 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.