美文网首页
c++ function 和 bind

c++ function 和 bind

作者: HenryTien | 来源:发表于2017-04-16 07:07 被阅读78次

    std::bind 綁定器

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

    bind 函数组合

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

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

    相关文章

      网友评论

          本文标题:c++ function 和 bind

          本文链接:https://www.haomeiwen.com/subject/xsaoattx.html