码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-10-16 02:03:10      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:anti   code   编译链接   使用   foo   通过   iat   void   int   

使用类模板的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成员

标签:anti   code   编译链接   使用   foo   通过   iat   void   int   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!