在下面的代码示例中,调用foo
有效,而调用bar
失败。
如果我注释掉对 的调用bar
,代码就会编译,这告诉我自己的定义bar
很好。那么如何bar
正确调用呢?
#include <iostream>
using namespace std;
int multiply(int x, int y)
{
return x * y;
}
template <class F>
void foo(int x, int y, F f)
{
cout << f(x, y) << endl;
}
template <class F>
void bar(int x, int y)
{
cout << F(x, y) << endl;
}
int main()
{
foo(3, 4, multiply); // works
bar<multiply>(3, 4); // fails
return 0;
}