引用计数的原理和实例

引用计数是对共享的动态内存的一种管理方法,STL库的string就是用到了引用计数的方法。本文简单描述引用计数的原理,重点以一个实例来说明怎么在程序中实现引用计数。

1. 概念
引用计数用来记录当前有多少指针指向同一块动态分配的内存。当有指针指向这块内存时,计数器加1;当指向此内存的指针销毁时,计数器减1。当引用计数为0时,表示此块内存没有被任何指针指向,此块被共享的动态内存才能被释放。

2. STL库的string利用引用计数共享内存
如下例:

#include <iostream>
#include <string>
using namespace std;
int main()
{
    string s_1("aaaa");
    printf("the address of s_1 is: %x\n", s_1.c_str());
    string s_2("bbbb");
    printf("the address of s_2 is: %x\n", s_2.c_str());
    string s_3 = s_1;
    printf("the address of s_3 is: %x\n", s_3.c_str());
    string s_4 = s_3;
    printf("the address of s_4 is: %x\n", s_4.c_str());
    s_1 = s_2;
    printf("the address of s_1 is: %x\n", s_1.c_str());
    s_1[2] = 'a';
    printf("the address of s_1 is: %x\n", s_1.c_str());
    return 0;
}



结果如下:
the address of s_1 is: 9042014
the address of s_2 is: 904202c
the address of s_3 is: 9042014 //s_3与s_1共享同一块内存
the address of s_4 is: 9042014 //s_4与s_1也共享同一块内存
the address of s_1 is: 904202c //将s_2赋给s_1, s1与s_2也赋给同一块内存, 此时s_3和s_4共享”aaaa”内存,s_1和s_2共享”bbbb”内存
the address of s_1 is: 9042044 //写s_1, 新的内存分配给s1
STL string共享内存的原则(copy on write):
利用初始化或赋值生成多个内容相同的string,当没有对这些string进行写操作时,它们会共享同一块内存。当有写操作出现时,才会有新的内存重新分配。

3. 利用引用计数实现简易String
问题:我们对String类的内存进行计数,但引用计数这个变量是类的什么类型的成员变量?
解答:
1) 普通私有成员变量,每个类都有一个独立的计数器变量,在新的类对象拷贝构造和赋值的时候需要进入原来的类对象中去获取这个计数器,再进行修改,在同一个类对象之间缺乏通用性。
2) static变量,类的所有对象公用一个计数器变量。字符串”aaaa”和”bbbb”使用不同的内存,它们应该分别有对应自己内存的计数器变量。
3) 结论,对每一块内存分配一个变量,可以在动态分配字符串内存是多分配一个字节,将计数器的值放在第一个字节中;也可以在动态分配内存前先动态分配一个int型的内存来存放这个计数器。

#include <iostream>
#include <cstring>
#include <cassert>
#include <cstdio>
class String
{
public:
    String(const char *str);
    String(const String& other);
    String& operator = (const String& other);
    char& operator [] (int index);
    ~String();
private:
    int *m_count;
    char *m_data;
};

int main()
{
    String s1("aaaa");
    String s2("bbbb");
    String s3 = s1;
    String s4 = s3;
    s1 = s2;
    s1[2] = 'a';
    return 0;
}

String::String(const char *str = NULL)
{
    printf("---constructor---\n");
    m_count = new int(0);
    *m_count = 1;
    if(str == NULL)
    {
        m_data = new char[1];
        *m_data = '\0';
    }
    int length = strlen(str);
    m_data = new char[length + 1];
    strcpy(m_data, str);
    printf("Allocate memory of %s at %x\n", m_data, m_data);
    printf("The Refcount of %s is %d\n", m_data, *m_count);
}

String::String(const String& other)
{
    printf("---copy constructor---\n");
    m_count = other.m_count;
    (*m_count)++;
    m_data = other.m_data;
    printf("The Refcount of %s is %d\n", m_data, *m_count);
}

String& String::operator = (const String& other)
{
    printf("---assign value---\n");
    if(this == &other)
    {
        return *this;
    }

    if(--(*m_count) == 0)
    {
        printf("Delete memeory of %s at %x\n", m_data, m_data);
        delete[] m_data;
        delete m_count;
        //m_data = NULL;
        //m_count = NULL;
    }

    m_count = other.m_count;
    m_data = other.m_data;
    (*m_count)++;
    printf("The Refcount of %s is %d\n", m_data, *m_count);
    return *this;
}

char& String::operator [] (int index)
{
    printf("---operator []---\n");
       int length = strlen(m_data);
       assert(index >= 0 && index < length);
            //引用计数为1时不用重新分配内存
       if((*m_count) == 1)
       {
           return *(m_data+index);
       }
            //引用计数大于1时需要重新分配内存
       if((*m_count) > 1)
       {
              (*m_count)--;
              int tmp_count = *m_count;
              m_count = new int(0);
              *m_count = 1;
                   char* tmp = new char[length+1];
              strcpy(tmp, m_data);
              m_data = tmp;
              printf("Re-Allocate memory at %x\n", m_data);
              printf("The new Refcount (Re-Allocated) is %d\n", *m_count);
              printf("The old Refcount is %d\n", tmp_count);
              return *(m_data+index);
       }
}

String::~String()
{
    printf("---destructor---\n");
    (*m_count) --;
    printf("The Refcount of %s is %d\n", m_data, *m_count);
    if((*m_count) == 0)
    {
        printf("Delete memeory of %s at %x\n", m_data, m_data);
        delete[] m_data;
        delete m_count;
        m_data = NULL;
        m_count = NULL;
    }
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值