STL(什么是函数适配器)

在这里插入图片描述

函数适配器: 扩展函数的参数接口(假如函数有一个参数 再扩展一个接口 据可以传递两个参数)

函数适配器

案例

//val 是for_each提供  tmp
//适配器2:公共继承binary_function
//适配器3:参数的萃取
//适配器4:对operator()进行const修饰
class MyPrint:public binary_function<int,int, void>
{
public:
    void operator()(int val,int tmp) const
    {
        cout<<val+tmp<<" ";
    }
};

void test05()
{
    vector<int> v;
    v.push_back(10);
    v.push_back(20);
    v.push_back(30);
    v.push_back(40);
    v.push_back(50);

    //适配器1:bind2nd 或bind1st 绑定参数
    for_each(v.begin(), v.end(), bind2nd(MyPrint(),1000) );
    cout<<endl;
}

运行结果:
在这里插入图片描述

案例:bind2nd 或bind1st区别

bind2nd:讲外界数据 绑定到第二个参数

bind1st:讲外界数据 绑定到第一个参数

void test05()
{
    vector<int> v;
    v.push_back(10);
    v.push_back(20);
    v.push_back(30);
    v.push_back(40);
    v.push_back(50);

    //适配器1:bind2nd 或bind1st 绑定参数
    cout<<"bind2nd"<<endl;
    for_each(v.begin(), v.end(), bind2nd(MyPrint(),1000) );
    cout<<endl;

    cout<<"--------------------"<<endl;
    cout<<"bind1st"<<endl;
    for_each(v.begin(), v.end(), bind1st(MyPrint(),1000) );
    cout<<endl;
}

运行结果:
在这里插入图片描述
在这里插入图片描述

取反适配器(not1一元取反)

not1一元取反

not2二元取反

//取反适配器2:public unary_function
//取反适配器3:参数萃取
//取反适配器4:const修饰operator()
class MyGreaterThan3:public unary_function<int,bool>
{
public:
    //一元谓词
    bool operator()(int val)const
    {
        return val>3;
    }
};
void test06()
{
    vector<int> v;
    v.push_back(1);
    v.push_back(2);
    v.push_back(3);
    v.push_back(4);
    v.push_back(5);
    //找出第一个大于3的数
    vector<int>::iterator ret;
    ret = find_if(v.begin(),v.end(), MyGreaterThan3() );
    if(ret != v.end())
    {
        cout<<"*ret = "<<*ret<<endl;//4
    }

    //找出第一个小于3的数
    //取反适配器1:not1修饰
    ret = find_if(v.begin(),v.end(), not1(MyGreaterThan3()) );
    if(ret != v.end())
    {
        cout<<"*ret = "<<*ret<<endl;//4
    }
}

运行结果:
在这里插入图片描述

注意:

binary_function 二元继承

unary_function 一元继承

案例2:二元取反not2

class MyGreaterInt:public binary_function<int,int,bool>
{
public:
    bool operator ()(int v1,int v2)const
    {
        return v1>v2;
    }
};
void test07()
{
    vector<int> v;
    v.push_back(2);
    v.push_back(1);
    v.push_back(5);
    v.push_back(3);
    v.push_back(4);

    for_each(v.begin(),v.end(), [](int v){cout<<v<<" ";});
    cout<<endl;

    //默认小--->大
    //sort(v.begin(),v.end());
    //更改排序规则大-->小
    //sort(v.begin(),v.end(), MyGreaterInt());
    //使用not2对MyGreaterInt()取反  小--->大
    //sort(v.begin(),v.end(), not2(MyGreaterInt()));
    //使用not2对内建函数取反
    sort(v.begin(),v.end(), not2(greater<int>()));
    //sort(v.begin(),v.end(), less<int>());
    for_each(v.begin(),v.end(), [](int v){cout<<v<<" ";});
    cout<<endl;
}

运行结果:
在这里插入图片描述

成员函数适配器(mem_fun_ref)

class Person
{
public:
    string name;
    int age;
    Person(string name,int age)
    {
        this->name = name;
        this->age = age;
    }
    void showPerson()
    {
        cout<<"name = "<<this->name<<",age="<<this->age<<endl;
    }
};
void myPrintPerson(Person &ob)
{
    cout<<"name = "<<ob.name<<",age="<<ob.age<<endl;
}
void test08()
{
    vector<Person> v;
    v.push_back(Person("德玛西亚",18));
    v.push_back(Person("狗头",28));
    v.push_back(Person("牛头",19));
    v.push_back(Person("小法",38));

    //遍历 myPrintPerson普通函数
    //for_each(v.begin(),v.end(), myPrintPerson );
    //遍历  Person成员函数
    //利用 mem_fun_ref 将Person内部成员函数适配
    for_each(v.begin(),v.end(), mem_fun_ref(&Person::showPerson) );
}

运行结果:
在这里插入图片描述

普通函数作为适配器(ptr_fun)

//普通函数 作为适配器
void myPrintInt01(int val,int tmp)
{
    cout<<val+tmp<<" ";
}
void test01()
{
    vector<int> v;
    v.push_back(10);
    v.push_back(20);
    v.push_back(30);
    v.push_back(40);

    //普通函数 需要使用ptr_fun转换成函数适配器
    for_each(v.begin(),v.end(), bind2nd(ptr_fun(myPrintInt01),1000));
    cout<<endl;
}

运行结果;
在这里插入图片描述

发布了78 篇原创文章 · 获赞 45 · 访问量 9260

猜你喜欢

转载自blog.csdn.net/weixin_43288201/article/details/105277256