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

相关推荐

头像
10-16 09:58
已编辑
门头沟学院 Java
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
09-30 19:49
起名星人:蛮离谱的,直接要求转投销售
投递汇川技术等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务