如何在模板基类中调用模板成员函数?

时间:2011-03-09 04:50:53

标签: c++ templates c++11 using member-functions

在基类中调用非模板化成员函数时,可以将其名称using导入到派生类中,然后使用它。 基类中的模板成员函数是否也可以这样做?

仅使用using它不起作用(使用g ++ - snapshot-20110219 -std = c ++ 0x):

template <typename T>
struct A {
  template <typename T2> void f() {  }
};

template <typename T>
struct B : A<T> {
  using A<T>::f;

  template <typename T2> void g() {
    // g++ throws an error for the following line: expected primary expression before `>`
    f<T2>();
  }
};

int main() {
  B<float> b;
  b.g<int>();
}

我知道在

中明确地为基类添加前缀
    A<T>::template f<T2>();

工作正常,但问题是:是否有可能没有和使用简单的使用声明(就像f不是模板函数的情况一样)?

如果无法做到这一点,有人知道为什么吗?

2 个答案:

答案 0 :(得分:10)

这有效(双关语):this->template f<T2>();

也是如此

template <typename T>
struct B : A<T> {
  template <typename T2> void f()
  { return A<T>::template f<T2>(); }

  template <typename T2> void g() {
    f<T2>();
  }
};

为什么using不依赖于模板的模板函数非常简单 - 语法不允许在该上下文中使用所需的关键字。

答案 1 :(得分:1)

我相信你应该使用:

  

this->A<T>::template f<T2>();

或:

  

this->B::template f<T2>();