我正在阅读以下问题:
What is the copy-and-swap idiom?
我的印象是,当一个对象按值传递时,它的指针和值被复制,但传递的对象指针所指向的内存不会被复制。因此,当从链接到示例:
重载赋值运算符时#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);
是否分配新内存并复制前一个数组的内容?
答案 0 :(得分:1)
随着您的复制构造函数的实现,
dumb_array(const dumb_array& other)
: mSize(other.mSize),
mArray(mSize ? new int[mSize] : 0),
mArray
内的dumb_array
被严格复制。不只是复制指针,而是创建了一个全新的数组,并填充了std::copy()
的内容副本。
因此,当执行operator=(dumb_array other)
时,this->mArray
和other.mArray
(由于参数是对象而不是引用,这是一个副本)是两个不同的数组。在swap()
之后,other.mArray
保存最初由this->mArray
保留的指针。当operator=()
返回时,other.mArray
只能被~dumb_array()
删除。