#include<iostream>
using namespace std;
class A {
int i;
public:
// A() {cout<<"in A's def const\n";};
A(int k) {cout<<"In A const\n"; i = k; }
};
class B : public A {
public:
//B(){cout<<"in B's def const\n";};
B(int i) : A(i) {cout<<"in B const\n";}
};
class C : public B {
public:
C() {cout<<"in C def cstr\n";}
C(int i) : B(i) {cout<<"in C const\n";}
};
int main()
{
C obj=new C(2);
return 0;
}
当我运行此代码时,它显示 在构造函数'C :: C()'中: 88c8237e3ffce7819f082b210069fd59.cpp:19:13:错误:没有匹配函数来调用'B :: B()'
为什么会发生这种情况,因为我只是在任何地方明确地调整参数化构造函数。请帮助 C(){cout&lt;&lt;“in C def cstr \ n”;}
答案 0 :(得分:6)
你无法申报
C() {cout<<"in C def cstr\n";}
因为基类A
和B
都没有默认(非参数化)构造函数。如果您取消注释your code would compile以外的内容(下面的评论除外)。
旁边评论,这是不正确的
C obj=new C(2);
您可以使用以下任何一种
C obj(2);
C obj{2};
C obj = C(2);
但是使用new
你必须分配一个指针(除非你出于某种原因需要堆分配的对象,否则我不建议使用它,在这种情况下更喜欢智能指针)。
C* obj = new C(2);
delete obj; // remember to delete it when you're done