码迷,mamicode.com
首页 > 编程语言 > 详细

C++PJ智能指针

时间:2015-05-13 10:18:59      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:template   const   智能指针   std   

#include <iostream>
using namespace std;

template<typename Type>
class auto_ptr
{
    public:
    auto_ptr(Type *d = NULL):ptr(d),own(d!=NULL){}
    auto_ptr(const auto_ptr &ap)
    {
        ptr = ap.realse();
        own = true;
    }
    auto_ptr& operator=(const auto_ptr &ap)
    {
        if(this!=&ap)
        {
            if(ap.own)//ap有拥有权。
            {   
                ptr = ap.realse();
                own = true;
            }
            else//ap没有拥有权.
            {
                ptr = ap.realse();
                own = false;
            }
        }
    }
    ~auto_ptr()
    {
        if(own)delete ptr;
    }
    Type operator*()
    {
        if(own)return *(this->ptr);
    }
    Type* operator->()
    {
        if(own)return ptr;
    }
    Type* realse()const//必须是const,常对象只能调用常方法.
    {
       if(own)
                ((auto_ptr *)(this))->own=false;
       Type* tmp =  this->ptr;
       return tmp;
    }
    private:
    bool own;//拥有权,并且同时只能只有一个对象有拥有权。
    Type *ptr;
};
int main()
{
    int *p = new int(20);
    auto_ptr<int> ps(p);
    auto_ptr<int> pb;
        pb = ps;
    cout<<*pb<<endl;
    return 0;
}

C++PJ智能指针

标签:template   const   智能指针   std   

原文地址:http://blog.csdn.net/liuhuiyan_2014/article/details/45688825

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!