静态 const 类成员的奇怪链接器问题

发布于 2024-11-09 17:35:34 字数 485 浏览 8 评论 0原文

请告诉我,为什么 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红玫瑰 2024-11-16 17:35:34

在类外部提供静态成员的定义

const int test_class::test_struct::constVar;

对我有用。

Provide the definition of the static member outside the class

const int test_class::test_struct::constVar;

This works for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文