c++ function 和 bind

std::bind 綁定器

  • 将函数、成员函数和闭包转换成function函数对象
  • 将多元(n>1) 转换为一元的函数对象或者(n-1)元函数对象。
//查找元素值大于10的元素的个数
int count = count_if(coll.begin(), coll.end(), std::bind1st(less(), 10));
//查找元素之小于10的元素
int count = count_if(coll.begin(), coll.end(), std::bind2nd(less(), 10));

bind 函数组合

//查找集合中大于5小于10的元素个数
auto f = bind(std::logical_and(), bind(std::greater(),_1,5), bind(std::less_equal(),_1,10));
int count = count_if(coll.begin(), coll.end(), f);

function 是为了泛化函数对象、函数指针、引用函数、成员函数的指针
bind是为了替换和增强之前的bind1st和bind2end,用起来方便。

你可能感兴趣的:(c++ function 和 bind)