在完全专用的类模板中初始化静态成员

发布于 2024-10-21 20:25:52 字数 480 浏览 1 评论 0原文

我似乎无法在完全专门的类模板中初始化静态成员!

我正在尝试执行以下操作:

template<typename Type>
class X
{
};

template<>
class X<int>
{                                       
    public:

    static int Value;   
}

但我似乎无法初始化静态成员,我尝试了以下所有操作:

template<>
int X<int>::Value = 0;

它无法编译,因此任何有关如何实际执行此操作的指针都会很好;)

编辑:下面的答案是正确的,但您还需要将 init 放在 .cpp 文件中,而不是放在头文件中。

感谢您的宝贵时间, 理查德.

I can't seem to init an static member inside an fully specialized class template!

I'm trying to do the following:

template<typename Type>
class X
{
};

template<>
class X<int>
{                                       
    public:

    static int Value;   
}

But i can't seem to init the static member, i tried everything like:

template<>
int X<int>::Value = 0;

It doesn't compile, so any pointers on how to actually do this would be nice ;)

Edit: the answer beneath is correct but you also need to place the init in the .cpp file and not in the header file.

Thanks for your time,
Richard.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

長街聽風 2024-10-28 20:25:52

定义 Value 时不要使用 template<>,因为在显式专用类的成员定义中不允许使用 template<>[X]。此外,您在 } 之后缺少一个分号,

对我有用

template<typename Type>
class X
{
};

template<>
class X<int>
{                                       
    public:

    static int Value;   
};

int X<int>::Value = 0;

Don't use template<> while defining Value because template<> is not allowed in member definition of explicitly specialized class[X<int> in this case]. Moreover you are missing a semicolon after }

This works for me:

template<typename Type>
class X
{
};

template<>
class X<int>
{                                       
    public:

    static int Value;   
};

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