c++ 复制与赋值

#include <iostream>
#include <string>
using namespace std;

class A
{
public:
int member;
A(int val):member(val){
}
A(const A& a):member(a.member)
{
cout << "()" << endl;
}

A& operator= (const A& a)
{
cout << "=" << endl;
}
};
int main()
{
A b(0);
A a = A(b);

}
为什么 输出  ()   调用copy constructor
全部评论
首先拷贝符写的有问题,少了个return *this;然后A a = A(b);应该是这样写:A a=b;
点赞 回复 分享
发布于 2016-05-07 19:20
A  copy constructor  is used to initialize a  previously uninitialized  object from some other object's data. An  assignment operator  is used to replace the data of a  previously initialized  object with some other object's data. 现在明白了。
点赞 回复 分享
发布于 2016-05-07 19:04
拷贝构造函数是用来初始化的。 如果你发现只调用了一次拷贝构造函数的话 这是nrv优化
点赞 回复 分享
发布于 2016-05-07 20:41

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务