为什么在程序中调用这个拷贝构造函数?

时间:2013-01-01 15:14:11

标签: c++

#include <iostream>
#include <string.h>

using namespace std;

class withCC
{
public:
    withCC() {}
    withCC(const withCC&) {
        cout<<"withCC(withCC&)"<<endl;
    }
};

class woCC
{
    enum {bsz = 100};
    char buf[bsz];
public:
    woCC(const char* msg = 0) {
        memset(buf, 0, bsz);
        if(msg) strncpy(buf, msg, bsz);
    }
    void print(const char* msg = 0)const {
        if(msg) cout<<msg<<":";
        cout<<buf<<endl;
    }
};

class composite
{
    withCC WITHCC;
    woCC WOCC;
public:
    composite() : WOCC("composite()") {}
    void print(const char* msg = 0) {
        cout<<"in composite:"<<endl;
        WOCC.print(msg);
    }
};

int main()
{
    composite c;
    c.print("contents of c");
    cout<<"calling composite copy-constructor"<<endl;
    composite c2 = c;
    c2.print("contents of c2");
}

运行结果如下:

$ ./a.out 
in composite:
contents of c:composite()
calling composite copy-constructor
withCC(withCC&)
in composite:
contents of c2:composite()

我不明白为什么withCC(withCC&)作为输出的一部分给出。我猜composite c2 = c;导致复制构造函数被执行。但是如下所示,WITHCCclass composite的一部分,为什么会调用它来处理这个拷贝构造函数?谢谢!

3 个答案:

答案 0 :(得分:7)

调用了复制构造函数withCC(withCC&),因为composite的默认复制构造函数将调用其成员数据的所有复制构造函数。由于withCC类中有composite个对象作为成员数据,因此调用了复制构造函数withCC(withCC&)

答案 1 :(得分:2)

称为复制构造函数

  • 实例化一个对象并使用其他对象或
  • 的值初始化它时
  • 当您按值将对象作为参数传递给函数或
  • 通过函数
  • 中的值返回对象

composite类的默认复制构造函数将调用其成员的复制构造函数,这就是打印withCC(withCC&)的原因。

答案 2 :(得分:1)

声明复合c2 = c; 将尝试通过复制构造函数复制对象,但类复合没有用户定义的复制构造函数,因此在您的情况下将使用编译器的默认复制构造函数。 并且您希望通过创建复合来构建 WOCC 对象,因此对于 WOCC 构建用户定义复制构造函数cc < / strong>被调用