加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

C 11 lambdas作为默认函数参数

发布时间:2020-12-16 07:52:15 所属栏目:百科 来源:网络整理
导读:我正在编写一个C 1函数,该函数需要一个可调用作为参数,并且我希望将该参数默认为无操作函数.这是我迄今为止最好的尝试: const std::functionvoid() noop= [](){};void f( int x,int y,std::functionvoid() fn= noop ) { /* ... */ } 我想知道标准库是否为我
我正在编写一个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对象).

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读