当我想将成员函数作为模板参数时,有没有办法在不提供Caller
类型的情况下对其进行模板化?
struct Foo
{
template <typename Caller, void (Caller::*Func)(int)>
void call(Caller * c) { (c->*Func)(6); }
};
struct Bar
{
void start()
{
Foo f;
f.call<Bar, &Bar::printNumber>(this);
^^^^
}
void printNumber(int i) { std::cout << i; }
};
int main ()
{
Bar b;
b.start();
return 0;
}
当我尝试
template <void (Caller::*Func)(int), typename Caller>
void call(Caller * c) { (c->*Func)(6); }
并称它为
f.call<&Bar::printNumber>(this);
我收到Caller is not class...
错误。
那么,有没有办法让编译器推断调用者类型?