2

如何派生一个具有带一些参数的构造函数的类?

//The construction in base class:
BaseClass::BaseClass(int inArgument) :
    m_args (inArgument) // where m_args is a public/protected member of the base class
{

}
//The construction of derived class:
DerivedClass::DerivedClass(int inArgument) :
    m_args (inArgument) // where m_args is a public/protected member of the derived class
{

}

编译后我得到:错误1错误C2512:'BaseClass':没有适当的默认构造函数可用

我是一个初学者 C++ 程序员...

4

1 回答 1

8

只需将参数转发给基类的构造函数:

DerivedClass::DerivedClass(int inArgument) : BaseClass(inArgument)
//                                         ^^^^^^^^^^^^^^^^^^^^^^^
{
}
于 2013-06-14T17:16:25.450 回答