有一个代码:

#include <functional>

template<typename DataType, typename Compare=std::less<DataType>>
class MyClass {
public:
  explicit MyClass(const Compare& f = Compare()) {
    compare = f;
  };

  bool foo(DataType, DataType);
private:
  Compare compare;
};

template<typename DataType>
bool MyClass<DataType>::foo(DataType a, DataType b) {
  return compare(a, b);
}

编译时出现错误:
error: nested name specifier 'MyClass<DataType>::'
      for declaration does not refer into a class, class template or class
      template partial specialization bool MyClass<DataType>::foo(DataType a, DataType b) {

如何防止错误并在类外声明方法?

最佳答案

您必须像主要模板定义中那样提供模板参数:

//        vvvvvvvvvvvvvvvvvvvvvvvvvvvvv
template <typename DataType, typename X>
bool MyClass<DataType, X>::foo(DataType a, DataType b) {
//           ^^^^^^^^^^^
  return compare(a, b);
}

10-07 14:25