首页 > 编程语言 > 详细

C++ 使用类模板的static成员

时间:2018-10-16 00:27:47      阅读:144      评论:0      收藏:0      [点我收藏+]

使用类模板的static成员

定义下面这个模板类

template <class T>
class Foo
{
  public:
    static std::size_t ctr;
    static std::size_t count() { return ctr++; }
    static void set_ctr(std::size_t v) { ctr = v; }

    T val;
};

下面的代码来使用它

Foo<int> f1, f2;
    Foo<int>::set_ctr(10000);
    auto r1 = f1.count();
    auto r2 = f2.count();
    Foo<int> fi, fi2;              // instantiates Foo<int> class
    size_t ct = Foo<int>::count(); // instantiates Foo<int>::count
    ct = fi.count();               // ok: uses Foo<int>::count
    ct = fi2.count();              // ok: uses Foo<int>::count

这会报错,因为必须在类外部出现数据成员的定义。
在类模板含有 static 成员的情况下,成员定义必须指出它是类模板的成员

template <class T>
size_t Foo<T>::ctr = 0; // define and initialize ctr

这样就能通过编译链接了

C++ 使用类模板的static成员

原文:https://www.cnblogs.com/kwebi/p/9795331.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!