这是我想了很久的事情。举个例子:
struct matrix
{
float data[16];
};
我知道这个特定示例中的默认构造函数和析构函数做了什么(什么都没有),但是复制构造函数和复制赋值运算符呢?
struct matrix
{
float data[16];
// automatically generated copy constructor
matrix(const matrix& that) : // What happens here?
{
// (or here?)
}
// automatically generated copy assignment operator
matrix& operator=(const matrix& that)
{
// What happens here?
return *this;
}
};
它涉及std::copy
或std::uninitialized_copy
或memcpy
或或memmove
或什么?