C 11 lambdas作为默认函数参数

前端之家收集整理的这篇文章主要介绍了C 11 lambdas作为默认函数参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个C 1函数,该函数需要一个可调用作为参数,并且我希望将该参数默认为无操作函数.这是我迄今为止最好的尝试:
const std::function<void()> noop= [](){};
void f( int x,int y,std::function<void()> fn= noop ) { /* ... */ }

我想知道标准库是否为我提供了一个“noop”std函数,还是需要像上面那样编写我自己的?我也想知道是否有办法避免明确命名“noop”功能.例如:

void f( int x,std::function<void()> fn= [](){} ) { /* ... */ }

将不会编译(在Visual Studio 2012 Update 3中),也不会:

void f( int x,std::function<void()> fn= std::function<void()>([](){}) ) { /* ... */ }

解决方法

I’m wondering whether the standard libraries provide a “noop” std function for me,or do I need to write my own as I have above?

不,没有默认noop功能.在这种情况下,您必须创建自己的(像您使用noop functor对象).

原文链接:https://www.f2er.com/c/115491.html

猜你在找的C&C++相关文章