在基类中调用非模板化成员函数时,可以将其名称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>();
工作正常,但问题是:是否有可能没有和使用简单的 using 声明(就像它在f
不是模板函数的情况下一样)?
如果这是不可能的,有人知道为什么吗?