0

我正在阅读以下问题:

什么是复制和交换成语?

我的印象是,当一个对象按值传递时,它的指针和值被复制,但传递的对象指针指向的内存没有被复制。因此,当从链接到示例中重载赋值运算符时:

#include <algorithm> // std::copy
#include <cstddef> // std::size_t

class dumb_array
{
public:
    // (default) constructor
    dumb_array(std::size_t size = 0)
        : mSize(size),
          mArray(mSize ? new int[mSize]() : 0)
    {
    }

    // copy-constructor
    dumb_array(const dumb_array& other) 
        : mSize(other.mSize),
          mArray(mSize ? new int[mSize] : 0),
    {
        // note that this is non-throwing, because of the data
        // types being used; more attention to detail with regards
        // to exceptions must be given in a more general case, however
        std::copy(other.mArray, other.mArray + mSize, mArray);
    }

    // destructor
    ~dumb_array()
    {
        delete [] mArray;
    }

    friend void swap(dumb_array& first, dumb_array& second) // nothrow
    {
        // enable ADL (not necessary in our case, but good practice)
        using std::swap; 

        // by swapping the members of two classes,
        // the two classes are effectively swapped
        swap(first.mSize, second.mSize); 
        swap(first.mArray, second.mArray);
    }

    dumb_array& operator=(dumb_array other) // (1)
    {
        swap(*this, other); // (2)

        return *this;
    } 

private:
    std::size_t mSize;
    int* mArray;
};

...复制对象的析构函数如何不消除指向的资源,mArray?现在正在完成分配的对象是否没有一个mArray指向可能已释放内存的复制指针?该行是否swap(first.mArray, second.mArray);分配新内存并复制前一个数组的内容?

4

1 回答 1

1

当您实现复制构造函数时,

dumb_array(const dumb_array& other) 
        : mSize(other.mSize),
          mArray(mSize ? new int[mSize] : 0),

mArray里面dumb_array被深深地复制了。不仅复制了指针,还创建了一个全新的数组并用std::copy().

因此,whenoperator=(dumb_array other)被执行,this->mArray并且other.mArray(这是一个副本,因为参数是对象而不是引用)是两个不同的数组。在 之后swap()other.mArray持有最初由 持有的指针this->mArray。当operator=()返回时,other.mArray可以被删除~dumb_array()

于 2015-02-25T02:28:59.500 回答