c/c++ 标准库 bind 函数 详解
2021-06-22 08:05
标签:等于 bool aos tps col 提前 amp hit list 其实,newCall= bind(check_size, _1, sz)返回了一个新的函数newCall ,这个newCall 只接受一个参数,正好满足find_if的要求。 例子: c/c++ 标准库 bind 函数 详解 标签:等于 bool aos tps col 提前 amp hit list 原文地址:https://www.cnblogs.com/xiaoshiwang/p/9678769.html标准库 bind 函数 详解
bind函数:接收一个函数名作为参数,生成一个新的函数。
auto newCallable = bind(callbale, arg_list);
arg_list中的参数可能包含入_1, _2等,这些是新函数newCallable的参数。
在这篇博客lambda 表达式 介绍 中,讨论了find_if的第三个参数的问题,当时是用lambda表达式解决的,有了bind函数后,也可以用bind函数解决。
解决办法:bind(check_size, _1, sz)
auto idx = find_if(svec.begin(),svec.end(),bind(check_size, _1, 6));
注意:_1,_2等,是放在了命名空间placeholder中,所以要使用:
//_1,_n定在std::placeholders里面
using namespace std::placeholders;
bind参数用法:
//g是以个有2个参数的可调用对象
auto g = bind(func, a, b, _2, c, _1);//func是有5个参数的函数
调用g(X, Y), 等于 func(a, b, Y, c, X)
#include
c/c++ 学习互助QQ群:877684253
本人微信:xiaoshitou5854
下一篇:python packaging
文章标题:c/c++ 标准库 bind 函数 详解
文章链接:http://soscw.com/index.php/essay/97290.html