- 论坛徽章:
- 0
|
比如这段程序:
- #include <stdio.h>
- class A
- {
- public:
- A(int num) {number = num;}
- A(const A& Src) { number = Src.number;}
- ~A() {}
- void print() { printf("A :: number :: %d\n", number);}
- private:
- int number;
- };
- class B
- {
- public:
- B(int num) : a(num){}
- //B(const B& Src){ a = Src.a;} //不调用属性a的复制构造函数
- B(const B& Src){ a(Src.a); } //调用属性a的复制构造函数
- ~B() {}
- void print() { printf("B :: ");a.print(); }
- private:
- A a;
- };
- int main()
- {
- B b1(9);
- B b2(b1);
- b2.print();
- return 0;
- }
复制代码
我在类A里面定义了复制构造函数,类B的一个私有属性是A的一个对象。
我在类B的复制构造函数中如果使用赋值构造函数就可以编译通过,如果使用赋值构造函数就报错:
error: no match for call to ‘(A) (const A&)’
这是什么原因?C++在这方面有规定么?请指教一下,谢谢。 |
|