我正在尝试为层次结构中的类提供不同的静态初始化,但是当我尝试使用此代码时:
#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* 的静态函数,唯一的问题是我希望为部分专业化进行初始化,而且似乎没有任何方法可以我知道在部分专业化中只重新定义一个函数,而不复制所有其他几乎保持不变的代码