メンバー関数をテンプレート引数として使用したい場合、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...
います。
では、コンパイラに Caller 型を推測させる方法はありますか?