std::bind(callable, arg_list)

std::bind(callable, arg_list)

#include <iostream>
#include <string>
#include <algorithm>
#include <functional>   //std::bind(callable, arg_list)

using namespace std;
using namespace std::placeholders;

bool check_size(const string &s, string::size_type sz){
    return s.size() >= sz;
}
bool isShorter(char a, char b){
    return a < b;
}
ostream &print(ostream &os, char c, char s){
    return os << s << c;
}
int main(int argc, char* argv[]){
    string s = "hello";
    check_size(s, 6);
    //参数绑定
    auto check = bind(check_size, _1, 6);
    check(s);
    auto check2 = bind(check_size, _2, _1);
    check2(6,s);
    //
    sort(s.begin(), s.end(), isShorter);
    cout << s << endl;
    sort(s.begin(), s.end(), bind(isShorter,_2,_1));
    cout << s << endl;

    ostream &os = cout;
    for_each(s.begin(), s.end(),bind(print, ref(os), _1, ' '));//需要使用标准库的ref()进行绑定引用参数
    cout << endl;
    for_each(s.begin(),s.end(),[&os,s](char c) mutable {s=" "; os << s << c;});
    cout << endl;
    auto print2 = [&os,s](char c) mutable {s=" "; os << s << c;};
    for_each(s.begin(),s.end(),bind(print2 , _1));
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

modao233

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值