在 C++ 中,我创建了一个名为parent 的基类。在此类中,我创建了一个可以采用一个参数的构造函数。我的子类名称是child。我的子类中没有任何构造函数。我的代码如下:
#include<iostream>
using namespace std;
class parent{
public:
parent(int number){
cout<<"Value of the number from parent class is: "<<number<<endl;
}
};
class child: public parent{
public:
child(): parent(10){
}
};
int main()
{
child ob(100);
return 0;
}
Run Code Online (Sandbox Code Playgroud)
当我尝试运行上面的代码时,编译器“没有显示调用‘child::child(int)’的匹配函数”。
我不想在子类中创建任何参数化构造函数。如何传递父类构造函数的值?我怎么解决这个问题?