同样的lambdas会产生不同的仿函数吗?

时间:2015-02-07 04:32:52

标签: c++ templates lambda

我是否正确理解以下代码将导致模板化函数fun的两个不同实例?

template<class F>
void fun ( F f )
{
    f();
}

// first call.
fun( []() {} );

// same call as before, but will result
// in another instantiation of "fun"
fun( []() {} ); 

0 个答案:

没有答案