我正在编写一个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对象).