我目前有一个带有模板方法的模板类。与仿函数一起工作很好,但在编译函数时遇到了麻烦。
Foo.h
template <typename T>
class Foo {
public:
// Constructor, destructor, etc...
template <typename Func>
void bar(T x, Func f);
};
template <typename T>
template <typename Func>
void Foo<T>::bar(T x, Func f) { /* some code here */ }
主文件
#include "Foo.h"
template <typename T>
class Functor {
public:
Functor() {}
void operator()(T x) { /* ... */ }
private:
/* some attributes here */
};
template <typename T>
void Function(T x) { /* ... */ }
int main() {
Foo<int> foo;
Functor<int> F;
foo.bar(2, F); // No problem
foo.bar(2, Function); // <unresolved overloaded function type>
return 0;
}