c ++模板语法

时间:2010-09-01 20:03:07

标签: c++ templates

如何修复此语法错误?

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 ();
}

1 个答案:

答案 0 :(得分:9)

U是一种依赖类型,因此您需要指定f是模板成员:

U::template f<C>();

U A时,这仍然无效,因为f不是static的{​​{1}}成员。