码迷,mamicode.com
首页 > 其他好文 > 详细

实现类似shared_ptr的引用计数

时间:2014-08-20 23:59:13      阅读:474      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   使用   os   io   ar   

13.27 定义使用引用计数版本的HasPtr

#include<iostream>
#include<string>
#include<new>

using namespace std;
class HasPtr
{
public:
    HasPtr(const string &s=string()):ps(new string(s)),i(0),use(new size_t(1)) {cout<<"constructer"<<endl;}
    HasPtr(const HasPtr &h):i(h.i)
    {
        cout<<"copy constructer"<<endl;
        ps=h.ps;
        ++*h.use;
        use=h.use;
    }
    HasPtr& operator=(const HasPtr &h)
    {
        ++*h.use;
        //将原来分配的内存空间删除
        while(--*use==0)
        {
            delete ps;
            delete use;
        }
        //指向新的内存空间
        ps=h.ps;
        i=h.i;
        use=h.use;
        return *this;
    }
    //如果在赋值操作中删除了左边对象的内存空间,则此处调用析构函数时将不再删除内存空间,但是该对象还是会被析构
    ~HasPtr()
    {
        if(--*use==0)
        {
            delete ps;
            delete use;
        }
        cout<<"destructer"<<endl;
    }
private:
    string *ps;
    int i;
    size_t *use;
};
int main()
{
    HasPtr h;
    HasPtr hh(h);
    hh=h;
    return 0;
}

 

实现类似shared_ptr的引用计数,布布扣,bubuko.com

实现类似shared_ptr的引用计数

标签:des   style   blog   color   使用   os   io   ar   

原文地址:http://www.cnblogs.com/wuchanming/p/3925826.html

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