我的基类中有一个常量 int 变量,我想在派生类中用不同的值(作为参数)初始化响应变量,这可能吗?
这是我所做的:
// Base.h (methods implemented in Base.cpp in the actual code)
class Base {
public:
Base(const int index) : m_index(index) {}
int getIndex() const { return m_index; }
private:
const int m_index;
};
// Derived.h
class Derived : public Base {
public:
Derived(const int index, const std::string name) : m_name(name) {}
void setName(const std::string name) { m_name = name; }
std::string getName() const { return m_name; }
private:
std::string m_name;
};
但显然它在问我Base::Base()
哪个不存在,如果我定义它,我将不得不为 提供默认值m_index
,这是我不想做的。我必须const int m_index
在每个派生类中单独定义吗?
类似的问题,但我不确定静态是否会以任何方式影响这一点: C++:在派生类中使用不同的值初始化基类常量静态变量?