如何修复此语法错误?
struct A {
template < typename T >
void f () {}
};
template < typename C, typename U >
struct B {
void g () {
U::f < C > (); // expected primary-expression before »>« token
}
};
int main () {
B<int,A> b;
b.g ();
}
答案 0 :(得分:9)
U
是一种依赖类型,因此您需要指定f
是模板成员:
U::template f<C>();
U
A
时,这仍然无效,因为f
不是static
的{{1}}成员。