bind函数定义在头文件 functional 中。可以将 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,6));
其实,newCall= bind(check_size,sz)返回了一个新的函数newCall ,这个newCall 只接受一个参数,正好满足find_if的要求。
•从find_if的角度来看,啊,newCall是含有一个参数的函数,OK,没问题。
•从程序猿的角度看,check_size是含有2个参数的函数,只是提前把sz(6)绑定到了newCall上了,
•当调用newCall(s),实际是调用了check_size(s,6),相当于newCall也有2个参数,只是第二个参数有个默认值为6。newCall(const string &s,size_t sz = 6); ,所以调用newCall时,传递一个参数就够了。
注意:_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,Y,X)
例子:
#include
#include
#include
#include
#include
using namespace std;
//_1,_n定在std::placeholders里面
using namespace std::placeholders;
bool check_size(const string &s,string::size_type sz){
return s.size() >= sz;
}
bool shorter(const string &a,const string &b){
return a.size() < b.size();
}
ostream& print(ostream& os,const string &s,const char &c){
//c = ',';
return os << s << c;
}
int main(){
/*
//用bind实现了和lambda一样的功能
vector
stable_sort(svec.begin(),[](const string &a,const string &b){
return a.size() < b.size();
});
string::size_type sz = 3;
auto IDx = find_if(svec.begin(),sz));
cout << *IDx << endl;
IDx = find_if(svec.begin(),[sz](const string &s){
return s.size() >= sz;
});
cout << *IDx << endl;
*/
/*
//用bind改变原来函数的参数的位置
//升序
vector
sort(svec.begin(),shorter);
for(auto const &s : svec){
cout << s << " ";
}
cout << endl;
//由于调换了shorter参数的位置,所以变成了降序
sort(svec.begin(),bind(shorter,_1));
for(auto const &s : svec){
cout << s << " ";
}
cout << endl;
*/
//bind引用,必须使用ref或者cref函数,把对象转化成引用,不能用&
ostream &os = cout;
const char c = ' ';
vector
for_each(svec.begin(),[&os,c](const string &s){
os << s << c;
});
os << endl;
for_each(svec.begin(),bind(print,ref(os),cref(c)));
os << endl;
cout << c << endl;
}
总结
以上所述是小编给大家介绍的c/c++ 标准库 bind 函数详解。内存溢出 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得内存溢出不错,可分享给好友!感谢支持。
总结以上是内存溢出为你收集整理的c/c++ 标准库 bind 函数详解全部内容,希望文章能够帮你解决c/c++ 标准库 bind 函数详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)