- 什么是抄袭的对象是什么意思?
- 什么是拷贝构造函数和拷贝赋值运算符?
- 我什么时候需要自己声明?
- 如何防止对象被复制?
Answers:
C ++使用值语义处理用户定义类型的变量。这意味着在各种上下文中隐式复制对象,我们应该了解“复制对象”的实际含义。
让我们考虑一个简单的例子:
class person
{
std::string name;
int age;
public:
person(const std::string& name, int age) : name(name), age(age)
{
}
};
int main()
{
person a("Bjarne Stroustrup", 60);
person b(a); // What happens here?
b = a; // And here?
}
(如果您对该name(name), age(age)
部分感到困惑,这称为成员初始化器列表。)
复制person
对象是什么意思?该main
功能显示了两种不同的复制方案。初始化person b(a);
由复制构造函数执行。它的工作是根据现有对象的状态构造一个新对象。分配b = a
由副本分配运算符执行。它的工作通常要复杂一些,因为目标对象已经处于某种有效状态,需要处理。
由于我们既没有声明拷贝构造函数,也没有声明赋值运算符(也没有析构函数),因此它们是为我们隐式定义的。从标准引用:
复制构造函数和复制赋值运算符,析构函数是特殊的成员函数。[ 注意:如果程序未明确声明它们,则实现将隐式声明某些类类型的这些成员函数。 如果使用它们,实现将隐式定义它们。[...]尾注 ] [n3126.pdf第12节§1]
默认情况下,复制对象意味着复制其成员:
非联合类X的隐式定义的复制构造函数执行其子对象的成员复制。[n3126.pdf第12.8§16节]
非联合类X的隐式定义的副本分配运算符执行其子对象的成员式副本分配。[n3126.pdf第12.8§30节]
隐式定义的特殊成员函数person
如下所示:
// 1. copy constructor
person(const person& that) : name(that.name), age(that.age)
{
}
// 2. copy assignment operator
person& operator=(const person& that)
{
name = that.name;
age = that.age;
return *this;
}
// 3. destructor
~person()
{
}
在这种情况下name
,按age
成员复制正是我们想要的:
并且被复制,因此我们得到了一个独立的,独立的person
对象。隐式定义的析构函数始终为空。在这种情况下,这也很好,因为我们没有在构造函数中获取任何资源。析person
构函数完成后,将隐式调用成员的析构函数:
在执行析构函数的主体并销毁主体中分配的所有自动对象后,类X的析构函数调用X的直接成员的析构函数[n3126.pdf 12.4§6]
那么什么时候应该显式声明那些特殊的成员函数呢?当我们的类管理资源时,也就是说,当类的对象负责该资源时。这通常意味着资源是在构造函数中获取的(或传递到构造函数中)并在析构函数中释放的。
让我们回到过去的标准C ++。没有这样的东西std::string
,并且程序员爱上了指针。该person
班有可能是这样的:
class person
{
char* name;
int age;
public:
// the constructor acquires a resource:
// in this case, dynamic memory obtained via new[]
person(const char* the_name, int the_age)
{
name = new char[strlen(the_name) + 1];
strcpy(name, the_name);
age = the_age;
}
// the destructor must release this resource via delete[]
~person()
{
delete[] name;
}
};
即使在今天,人们仍然以这种风格编写类并陷入麻烦:“ 我将一个人推入向量中,现在我得到了疯狂的内存错误! ”请记住,默认情况下,复制对象意味着复制其成员,但name
仅复制成员复制一个指针,而不是它指向的字符数组!这有几个令人不愉快的影响:
a
可以观察通过的变化b
。b
被摧毁a.name
是一个悬空的指针。a
被破坏,则删除悬空指针会产生未定义的行为。name
分配前所指的内容,因此迟早您会在各处发现内存泄漏。由于逐成员复制没有达到预期的效果,因此我们必须显式定义复制构造函数和复制赋值运算符以制作字符数组的深层副本:
// 1. copy constructor
person(const person& that)
{
name = new char[strlen(that.name) + 1];
strcpy(name, that.name);
age = that.age;
}
// 2. copy assignment operator
person& operator=(const person& that)
{
if (this != &that)
{
delete[] name;
// This is a dangerous point in the flow of execution!
// We have temporarily invalidated the class invariants,
// and the next statement might throw an exception,
// leaving the object in an invalid state :(
name = new char[strlen(that.name) + 1];
strcpy(name, that.name);
age = that.age;
}
return *this;
}
注意初始化和赋值之间的区别:我们必须在赋值之前拆除旧状态,name
以防止内存泄漏。另外,我们必须防止表单的自我分配x = x
。如果没有该检查,delete[] name
将删除包含源字符串的数组,因为在编写时x = x
,两个this->name
和that.name
都包含相同的指针。
不幸的是,如果new char[...]
由于内存耗尽而引发异常,此解决方案将失败。一种可能的解决方案是引入局部变量并对语句重新排序:
// 2. copy assignment operator
person& operator=(const person& that)
{
char* local_name = new char[strlen(that.name) + 1];
// If the above statement throws,
// the object is still in the same state as before.
// None of the following statements will throw an exception :)
strcpy(local_name, that.name);
delete[] name;
name = local_name;
age = that.age;
return *this;
}
这也可以在没有明确检查的情况下进行自我分配。解决此问题的一个更强大的解决方案是“ 复制和交换”习惯用法,但在此我将不讨论异常安全性的详细信息。我只提到了例外情况以说明以下几点:编写用于管理资源的类很困难。
某些资源不能或不应被复制,例如文件句柄或互斥锁。在这种情况下,只需将复制构造函数和复制赋值运算符声明为,private
而无需给出定义:
private:
person(const person& that);
person& operator=(const person& that);
另外,您可以继承boost::noncopyable
或声明它们为已删除(在C ++ 11及更高版本中):
person(const person& that) = delete;
person& operator=(const person& that) = delete;
有时您需要实现一个管理资源的类。(永远不要在一个类中管理多个资源,这只会导致痛苦。)在这种情况下,请记住以下三个规则:
如果您需要自己显式声明析构函数,复制构造函数或复制赋值运算符,则可能需要显式声明这三个函数。
(不幸的是,该“规则”不是由C ++标准或我所知道的任何编译器强制执行的。)
从C ++ 11开始,对象具有2个额外的特殊成员函数:move构造函数和move赋值。五个州的规则也要实现这些功能。
带有签名的示例:
class person
{
std::string name;
int age;
public:
person(const std::string& name, int age); // Ctor
person(const person &) = default; // Copy Ctor
person(person &&) noexcept = default; // Move Ctor
person& operator=(const person &) = default; // Copy Assignment
person& operator=(person &&) noexcept = default; // Move Assignment
~person() noexcept = default; // Dtor
};
3/5的规则也称为0/3/5的规则。规则的零部分表示在创建类时不允许编写任何特殊成员函数。
大多数时候,您不需要自己管理资源,因为诸如此类的现有类std::string
已经为您完成了。只需将使用std::string
成员的简单代码与使用a 进行卷积且容易出错的替代方法进行比较char*
,您应该被说服。只要您远离原始指针成员,三个规则就不太可能涉及您自己的代码。
基本原则是,三原则是C ++的经验法则
如果您的班级需要以下任何一项
- 一个拷贝构造函数,
- 一个赋值运算符,
- 或破坏者,
明确定义,则可能需要全部三个。
这样做的原因是,这三个方法通常都用于管理资源,如果您的班级管理资源,则通常需要管理复制和释放。
如果没有很好的语义来复制类管理的资源,请考虑通过将复制构造函数和赋值运算符声明为(未定义)来禁止复制private
。
(请注意,即将发布的C ++标准的新版本(即C ++ 11)向C ++添加了移动语义,这可能会更改“三规则”。但是,我对此知之甚少,无法编写C ++ 11部分关于三法则。)
boost::noncopyable
)继承。它也可以更加清晰。我认为C ++ 0x和“删除”功能的可能性可能会有所帮助,但忘记了语法:/
noncopyable
是std lib的一部分,否则我认为它不会带来太大的改进。(哦,如果您忘记了删除语法,就忘记了我所知道的时间。:)
)
三巨头的法律如上所述。
用简单的英语简单说明其解决的问题:
非默认析构函数
您在构造函数中分配了内存,因此需要编写一个析构函数才能将其删除。否则会导致内存泄漏。
您可能会认为这已经完成。
问题将是,如果对您的对象进行了复制,则该副本将指向与原始对象相同的内存。
一旦,其中一个删除其析构函数中的内存,另一个试图使用它时,将有一个指向无效内存的指针(称为悬挂指针)。
因此,您编写了一个复制构造函数,以便它为新对象分配自己的内存以销毁。
赋值运算符和副本构造函数
您将构造函数中的内存分配给了类的成员指针。当您复制此类的对象时,默认的赋值运算符和复制构造函数会将此成员指针的值复制到新对象。
这意味着新对象和旧对象将指向同一块内存,因此当您在一个对象中对其进行更改时,另一个对象也将被更改。如果一个对象删除了该内存,另一个对象将继续尝试使用它-eek。
要解决此问题,您可以编写自己的版本的复制构造函数和赋值运算符。您的版本为新对象分配了单独的内存,并跨第一个指针指向的值(而不是其地址)进行复制。
基本上,如果您有析构函数(不是默认的析构函数),则意味着您定义的类具有一定的内存分配。假设该类由某些客户端代码或您在外部使用。
MyClass x(a, b);
MyClass y(c, d);
x = y; // This is a shallow copy if assignment operator is not provided
如果MyClass仅具有一些原始类型的成员,则默认的赋值运算符将起作用,但是如果它具有一些没有赋值运算符的指针成员和对象,则结果将是不可预测的。因此,我们可以说,如果在类的析构函数中有一些要删除的内容,则可能需要一个深层复制运算符,这意味着我们应该提供一个复制构造函数和赋值运算符。
复制对象是什么意思?有几种复制对象的方法-让我们谈谈您最可能引用的两种-深层复制和浅层复制。
由于我们使用的是面向对象的语言(或至少假设是这样),因此假设您分配了一块内存。由于它是一种面向对象的语言,我们可以轻松地引用我们分配的内存块,因为它们通常是我们定义的由我们自己的类型和基元构成的基元变量(int,char,bytes)或类。假设我们有以下类别的Car:
class Car //A very simple class just to demonstrate what these definitions mean.
//It's pseudocode C++/Javaish, I assume strings do not need to be allocated.
{
private String sPrintColor;
private String sModel;
private String sMake;
public changePaint(String newColor)
{
this.sPrintColor = newColor;
}
public Car(String model, String make, String color) //Constructor
{
this.sPrintColor = color;
this.sModel = model;
this.sMake = make;
}
public ~Car() //Destructor
{
//Because we did not create any custom types, we aren't adding more code.
//Anytime your object goes out of scope / program collects garbage / etc. this guy gets called + all other related destructors.
//Since we did not use anything but strings, we have nothing additional to handle.
//The assumption is being made that the 3 strings will be handled by string's destructor and that it is being called automatically--if this were not the case you would need to do it here.
}
public Car(const Car &other) // Copy Constructor
{
this.sPrintColor = other.sPrintColor;
this.sModel = other.sModel;
this.sMake = other.sMake;
}
public Car &operator =(const Car &other) // Assignment Operator
{
if(this != &other)
{
this.sPrintColor = other.sPrintColor;
this.sModel = other.sModel;
this.sMake = other.sMake;
}
return *this;
}
}
深层复制是如果我们声明一个对象,然后创建该对象的完全独立的副本...我们最终将在2套完整的内存集中拥有2个对象。
Car car1 = new Car("mustang", "ford", "red");
Car car2 = car1; //Call the copy constructor
car2.changePaint("green");
//car2 is now green but car1 is still red.
现在,让我们做一些奇怪的事情。假设car2编程错误或故意共享car1组成的实际内存。(这样做通常是一个错误,并且在类中通常是讨论该主题的毯子。)假装每次询问car2时,您实际上是在解析指向car1的内存空间的指针...或多或少是一个浅表副本是。
//Shallow copy example
//Assume we're in C++ because it's standard behavior is to shallow copy objects if you do not have a constructor written for an operation.
//Now let's assume I do not have any code for the assignment or copy operations like I do above...with those now gone, C++ will use the default.
Car car1 = new Car("ford", "mustang", "red");
Car car2 = car1;
car2.changePaint("green");//car1 is also now green
delete car2;/*I get rid of my car which is also really your car...I told C++ to resolve
the address of where car2 exists and delete the memory...which is also
the memory associated with your car.*/
car1.changePaint("red");/*program will likely crash because this area is
no longer allocated to the program.*/
因此,无论使用哪种语言编写,都要非常小心地复制对象,这是因为大多数时候您都希望进行深层复制。
复制构造函数和复制分配运算符是什么?我已经在上面使用了它们。当您键入代码(例如,Car car2 = car1;
本质上是声明一个变量并将其分配在一行中)时,即调用复制构造函数时,将调用复制构造函数。赋值运算符是当您使用等号时发生的事情-car2 = car1;
。注意car2
不在同一语句中声明。您为这些操作编写的两个代码块可能非常相似。实际上,典型的设计模式还具有另一个函数,一旦您满意初始复制/分配是合法的,就可以调用它来设置所有内容。
我什么时候需要自己声明?如果您不是在编写要以某种方式共享或用于生产的代码,则实际上只需要在需要它们时声明它们即可。如果您选择“偶然”使用它而没有编写一种语言,那么您确实需要知道您的程序语言会做什么,即,使编译器成为默认语言。例如,我很少使用复制构造函数,但是赋值运算符的覆盖很常见。您是否知道您还可以覆盖加法,减法等含义?
如何防止对象被复制?合理的做法是,使用私有函数覆盖所有允许为对象分配内存的方式。如果您确实不希望人们复制它们,则可以将其公开并通过引发异常并且不复制对象来警告程序员。
我什么时候需要自己声明?
三法则指出,如果您声明任何
那么您应该声明所有三个。它源于这样的观察:接管复制操作的含义的需求几乎总是源自执行某种资源管理的类,并且几乎总是暗示着
在一个复制操作中完成的资源管理可能需要在另一复制操作中完成,并且
类析构函数也将参与资源的管理(通常是释放资源)。要管理的经典资源是内存,这就是为什么所有管理内存的标准库类(例如,执行动态内存管理的STL容器)都声明“三者”:复制操作和析构函数。
三规则的结果是,用户声明的析构函数的存在指示简单的成员明智的复制不太适合该类中的复制操作。反过来,这表明,如果类声明了析构函数,则可能不应该自动生成复制操作,因为它们不会做正确的事情。在采用C ++ 98时,这种思路的重要性并未得到充分认识,因此在C ++ 98中,用户声明的析构函数的存在对编译器生成复制操作的意愿没有影响。在C ++ 11中,情况仍然如此,但这只是因为限制复制操作的生成条件会破坏太多的旧代码。
如何防止对象被复制?
声明复制构造函数和复制赋值运算符作为私有访问说明符。
class MemoryBlock
{
public:
//code here
private:
MemoryBlock(const MemoryBlock& other)
{
cout<<"copy constructor"<<endl;
}
// Copy assignment operator.
MemoryBlock& operator=(const MemoryBlock& other)
{
return *this;
}
};
int main()
{
MemoryBlock a;
MemoryBlock b(a);
}
从C ++ 11开始,您还可以声明复制构造函数和赋值运算符已删除
class MemoryBlock
{
public:
MemoryBlock(const MemoryBlock& other) = delete
// Copy assignment operator.
MemoryBlock& operator=(const MemoryBlock& other) =delete
};
int main()
{
MemoryBlock a;
MemoryBlock b(a);
}
C ++中的三个规则是设计和开发三个要求的基本原则,即如果以下成员函数之一中有明确的定义,则程序员应一起定义其他两个成员函数。即以下三个成员函数是必不可少的:析构函数,复制构造函数,复制赋值运算符。
C ++中的Copy构造函数是一种特殊的构造函数。它用于构建新对象,该新对象等效于现有对象的副本。
复制赋值运算符是一种特殊的赋值运算符,通常用于将现有对象指定给其他相同类型的对象。
有简单的例子:
// default constructor
My_Class a;
// copy constructor
My_Class b(a);
// copy constructor
My_Class c = a;
// copy assignment operator
b = a;
c++-faq
标签维基你投票关闭之前。