我有一个类,我想存储一个静态std::string
的,它要么是真正的 const,要么是通过 getter 有效的 const。
我尝试了几种直接方法
1。
const static std::string foo = "bar";
2.
const extern std::string foo; //defined at the bottom of the header like so
...//remaining code in header
}; //close header class declaration
std::string MyClass::foo = "bar"
/#endif // MYCLASS_H
我也试过
3.
protected:
static std::string foo;
public:
static std::string getFoo() { return foo; }
这些方法分别由于以下原因而失败:
- 错误:静态数据成员的类内初始化
const string MyClass::foo
错误:非文字类型 - 指定的存储类
foo
-- 它似乎不喜欢extern
与const
or组合static
- 我的代码的其他部分甚至 getter 函数的返回行生成了许多“未定义的引用”错误
我希望在标头而不是源文件中声明的原因。这是一个将被扩展的类,它的所有其他功能都是纯虚拟的,所以我目前除了这些变量之外没有其他理由拥有源文件。
那么如何做到这一点呢?