#include<iostream>
#include<algorithm>
//#include<vector>
#include<string>
#include<functional>
using namespace std;
//using std::placeholders::_1; //我使用了”using namespace std“了啊,那为什么我把这里注释掉了就不正确了呢?
bool check_size(const string &s , string::size_type sz)
{
return s.size() > sz ;
}
int main()
{
auto check6 = bind(check_size , _1 , 6);
string s = "hello";
bool b1 = check6(s);
}
暮色呼如