What#39;s the difference between assignment operator and copy constructor?(赋值运算符和复制构造函数有什么区别?)
问题描述
我不明白 C++ 中赋值构造函数和复制构造函数之间的区别.是这样的:
I don't understand the difference between assignment constructor and copy constructor in C++. It is like this:
class A {
public:
A() {
cout << "A::A()" << endl;
}
};
// The copy constructor
A a = b;
// The assignment constructor
A c;
c = a;
// Is it right?
我想知道赋值构造函数和复制构造函数的内存怎么分配?
I want to know how to allocate memory of the assignment constructor and copy constructor?
推荐答案
复制构造函数用于初始化一个之前未初始化的 对象来自其他对象的数据.
A copy constructor is used to initialize a previously uninitialized object from some other object's data.
A(const A& rhs) : data_(rhs.data_) {}
例如:
A aa;
A a = aa; //copy constructor
赋值运算符用于用其他对象的数据替换先前初始化对象的数据.
An assignment operator is used to replace the data of a previously initialized object with some other object's data.
A& operator=(const A& rhs) {data_ = rhs.data_; return *this;}
例如:
A aa;
A a;
a = aa; // assignment operator
您可以通过默认构造加赋值来替换复制构造,但这会降低效率.
You could replace copy construction by default construction plus assignment, but that would be less efficient.
(附注:我上面的实现正是编译器免费授予您的实现,因此手动实现它们没有多大意义.如果您有这两个中的一个,则很可能是您手动管理一些资源.在这种情况下,根据三法则,你很可能还需要另一个加上析构函数.)
(As a side note: My implementations above are exactly the ones the compiler grants you for free, so it would not make much sense to implement them manually. If you have one of these two, it's likely that you are manually managing some resource. In that case, per The Rule of Three, you'll very likely also need the other one plus a destructor.)
这篇关于赋值运算符和复制构造函数有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:赋值运算符和复制构造函数有什么区别?
基础教程推荐
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
