3

我正在使用 CRTP,并且基类具有模板功能。如何use在模板派生类中使用该成员函数?

template <typename T>
struct A {
  int f();
  template <typename S>
  int g();
};
struct B: public A<B> {
  int h() { return f() + g<void>(); } // ok
};
template <typename T>
struct C: public A<C<T>> {
  // must 'use' to get without qualifying with this->
  using A<C<T>>::f; // ok
  using A<C<T>>::g; // nope
  int h() { return f() + g<void>(); } // doesn't work
};

* 编辑 * 一个较早的问题,Using declaration for type-dependent template name(包括注释)表明这是不可能的,并且可能是标准中的疏忽。

4

1 回答 1

2

我不知道如何用using语句解决问题(它应该看起来像using A<C<T>>::template g;,但这段代码不能用我的编译器编译)。但是您可以g<void>通过以下方式之一调用方法:

  • this->template g<void>()

  • A<C<T>>::template g<void>()

有关使用关键字的阴暗面的详细信息,请参阅此问题的答案。template

于 2014-02-26T22:17:26.617 回答