构造函数中模板化类成员的继承

时间:2013-05-13 14:38:31

标签: c++ class templates inheritance constructor

我发布了一个非常相似的question并得到了我的回答。我现在面临与构造函数相同的问题.. 如何为T2编写构造函数?

template<typename T>
class T1
{
    public:
      T1(int t) : m_t(t) {}

    protected:
    int m_t;
};

template<typename T>
class T2 : public T1<T>
{
    public:
      T2(int t) : m_t(t) {} // error

      int get()
      { return this->m_t; }

    protected:
};

1 个答案:

答案 0 :(得分:9)

您需要在T2的初始值设定项列表中调用基类构造函数:

T2(int t) : T1<T>(t) {}

T2<T>的构造函数将调用T1<T>的构造函数,该构造函数将初始化T1<T>::m_t