我想知道为什么在以下代码中,编译器无法将lambda用作函数foo()的参数(模板参数推导/替换失败),而一个简单的函数却起作用:
template<class ...Args>
void foo(int (*)(Args...))
{
}
int bar(int)
{
return 0;
}
int main() {
//foo([](int) { return 0; }); // error
foo(bar);
return 0;
}
intel编译器(版本18.0.3)
template.cxx(12): error: no instance of function template "foo" matches the argument list
argument types are: (lambda [](int)->int)
foo([](int) { return 0; }); // error
^
template.cxx(2): note: this candidate was rejected because at least one template argument could not be deduced
void foo(int (*)(Args...))
有什么想法吗?
答案 0 :(得分:8)
Template argument deduction不考虑隐式转换。
类型推导不考虑隐式转换(上面列出的类型调整除外):这是超载解析的工作,稍后会发生。
您可以将lambda明确转换为函数指针,例如
foo(static_cast<int(*)(int)>([](int) { return 0; }));
或
foo(+[](int) { return 0; });