我试图为层次结构中的类提供不同的静态初始化,但是当我尝试使用此代码时:

#include <iostream>

using namespace std;

struct base {
static const char* componentName;
};
const char* base::componentName = "base";

struct derived : public base {};

const char* derived::componentName = "derived";

int main() {

cout << base::componentName << endl;
cout << derived::componentName << endl;
}

我最终遇到了这个构建错误:
test.cpp:15: error: ISO C++ does not permit ‘base::componentName’ to be defined as ‘derived::componentName’
test.cpp:15: error: redefinition of ‘const char* base::componentName’
test.cpp:11: error: ‘const char* base::componentName’ previously defined here

似乎无法在派生类上重写静态初始化吗?如果这不起作用,我可能总是将componentName定义为返回const char *的静态函数,我的唯一问题是希望对部分特化进行初始化,而且似乎没有任何办法我知道要在部分特化中仅重新定义一个函数,而无需复制将保持基本相同的所有其他代码

最佳答案

您也需要在子类中声明它。

struct derived : public base {
    static const char* componentName;
};

09-06 04:31