静态 const 类成员的奇怪链接器问题
请告诉我,为什么 gcc 链接器给我以下错误: "test_class::test_struct::constVar", referenced from: __ZN12lu_test_class27test_struct6constVar$non_lazy_ptr in test_class.o ?
我的代码(test_class.h):
class test_class
{
struct test_struct
{
static const int constVar = 0;
};
};
对constVar的所有引用都在通常的静态成员访问形式的test_class范围内:test_struct: :constVar。
Please tell me, why gcc linker gives me the following error: "test_class::test_struct::constVar", referenced from: __ZN12lu_test_class27test_struct6constVar$non_lazy_ptr in test_class.o ?
My code (test_class.h):
class test_class
{
struct test_struct
{
static const int constVar = 0;
};
};
All references to constVar are in test_class scope in a usual static member access form: test_struct::constVar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在类外部提供静态成员的定义
这对我有用。
Provide the definition of the static member outside the class
This works for me.