我正在尝试学习c ++,并且必须构建一个代码来学习类层次结构。它的构造使得A类和B类具有has-a关系以及B类和C类。我需要通过启用A的复制构造函数来调用B和C中的复制构造函数,在我的主文件中复制我的对象,但我不知道怎么做。
#ifndef A_HH
#define A_HH
#include "B.hh"
class A {
public:
A() { std::cout << "Constructor A" << this << std::endl ; }
A(const A&) { std::cout << "Copy Constructor A" << this << std::endl ; }
~A() { std::cout << "Destructor A" << this << std::endl ; }
private:
B b;
} ;
#endif
B组:
#ifndef B_HH
#define B_HH
#include <iostream>
#include "C.hh"
class B {
public:
B() { std::cout << "Constructor B" << this << std::endl ; array = new C[len];}
B(const B& other): array(other.array) { std::cout << "Copy Constructor B" << this << std::endl ;
array = new C[len];
for(int i=0;i<len;i++)
{
C[i] = other.C[i];
}
}
~B() { std::cout << "Destructor B" << this << std::endl ; delete[] array;}
private:
C *array;
static const int len = 12;
} ;
#endif
C班:
#ifndef C_HH
#define C_HH
#include <iostream>
class C {
public:
C() { std::cout << "Constructor C" << this << std::endl ; }
C(const C&) { std::cout << "Copy Constructor C" << this << std::endl ; }
~C() { std::cout << "Destructor C" << this << std::endl ; }
private:
} ;
#endif
我创建了这样的两个对象:
#include<iostream>
#include"A.hh"
int main(){
A a;
A a_clone(a);
}
因此,在创建a_clone
时,我应该获得复制构造函数消息,但现在它只是创建一个我认为的新对象。
后续问题:我的B类实际上看起来像是编辑过的,它必须创建一个动态分配的C
对象数组。但是这样它仍然不使用复制构造函数。我该如何解决这个问题?
答案 0 :(得分:2)
在复制构造函数中,您需要调用成员的复制构造函数;例如:
A::A(const A& rhs): b(rhs.b) {}
答案 1 :(得分:2)
如果你没有有一个拷贝构造函数,让编译器为你生成一个,或者你明确添加一个并将其标记为default
(例如{{1}然后生成的复制构造函数应该为你做正确的事。
我建议你阅读the rule of zero。
我还建议你阅读copy elision。