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

写时拷贝(方案二)

时间:2016-03-26 08:35:21      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:string   写时拷贝   copy on write   

方案二

class String
{
private:
    char* _str;
    static int count;
};

设置一个静态整形变量来计算指向一块内存的指针的数量,每析构一次减1,直到它等于0(也就是没有指针在指向它的时候)再去释放那块内存,看似可行,其实不然!

这个方案只适用于只调用一次构造函数、只有一块内存的情形,如果多次调用构造函数构造对象,新构造的对象照样会改变count的值,那么以前的内存无法释放会造成内存泄漏。

技术分享

结合上图和下面的代码,我们可以清楚地看到该方案相比方案一的改善,以及缺陷

#define_CRT_SECURE_NO_WARNINGS 1


#include<iostream>
using namespace std;
#include<assert.h>

class String
{
public:
    String(char* str = "")    //不能strlen(NULL)
    {
       _str = new char[strlen( str) + 1];
       strcpy(_str, str);

       count++;
    }
    String(const String &s)
    {
       _str = s._str;
       count++;
       
    }
    String& operator=( String& s)  
    {
       _str = s._str;
       count++;
       return *this;
    }
    ~String()
    {
       if (--count == 0)
       {
            delete[] _str;
           _str = NULL;
           cout << "~String " << endl;
       }
    }
    friend ostream& operator<<( ostream& output, const String &s);
    friend istream& operator>>( istream& input, const String &s);
private:
    char* _str;
    static int count;
};
ostream& operator<<( ostream& output, const String & s)
{
    output << s._str;
    return output;
}
istream& operator>>( istream& input, const String & s)
{
    input >> s._str;
    return input;
}

int String::count = 0;      //初始化count

void Test()
{
    String s1("aaa");
    String s2(s1);
    String s3 = s2;
    cout << s1 << endl;
    cout << s2 << endl;
    cout << s3 << endl;

}
int main()
{
    Test();
    system("pause");
    return 0;
}

以下是其它方案链接地址:

方案一:

http://iynu17.blog.51cto.com/10734157/1755179

方案三:

http://iynu17.blog.51cto.com/10734157/1755208

方案四:(推荐)

http://iynu17.blog.51cto.com/10734157/1755213


本文出自 “言安阳” 博客,谢绝转载!

写时拷贝(方案二)

标签:string   写时拷贝   copy on write   

原文地址:http://iynu17.blog.51cto.com/10734157/1755185

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