我是 C++ 编程的新手,和其他人一样,我发现复制构造函数的概念有点奇怪。我浏览了一个网站,上面说
复制构造函数是一种特殊的构造函数,它创建一个新对象,该对象是现有对象的副本,并且有效地执行此操作。
我写了一个代码来创建一个对象,它是另一个对象的副本,发现结果很奇怪,代码如下。
#include <iostream>
using namespace std;
class box
{
public:
double getwidth();
box(double );
~box();
box(box &);
private:
double width;
};
box::box(double w)
{
cout<<"\n I'm inside the constructor ";
width=w;
}
box::box(box & a)
{
cout<<"\n Copy constructructor got activated ";
}
box::~box()
{
cout<<"\n I'm inside the desstructor ";
}
double box::getwidth()
{
return width;
}
int main()
{
box box1(10);
box box2(box1);
cout<<"\n calling getwidth from first object : " <<box1.getwidth();
cout<<"\n calling the getwidth from second object : " <<box2.getwidth();
}
当我按照下面的代码调用 box2.getwidth() 时,我得到了一个垃圾值。根据我的理解,我希望将宽度初始化为 10,因为 box2 是 box1 的副本。请澄清