当前位置:   article > 正文

【C++】STL函数对象适配器的使用

【C++】STL函数对象适配器的使用

 1、函数适配器

        如果函数对象仅有一个输入但是需要多个输入,可采用函数适配器bind1st和bind2nd绑定要输入的参数即可,同时需要我们自己的函数对象继承binary_function(二元函数对象)或者 unary_function(一元函数对象)。

  1. class my_Print :public binary_function<int,int,void>//<第一个参数类型,第二个参数类型,返回值>
  2. {
  3. public:
  4. void operator()(int val1,int val2) const{
  5. cout << "val1= : " << val1<< " val2= :" <<val2<< " val1+val2 = :" << (val1+ val2) << endl;}
  6. };
  7. void test()
  8. {
  9. vector<int>v;
  10. for (int i = 0; i < 10; i++)
  11. {
  12. v.push_back(i);
  13. }
  14. cout << "请输入起始值:" << endl;
  15. int origin;
  16. cin >> origin;
  17. //bind1st bind2nd将二元函数对象转为一元函数对象
  18. for_each(v.begin(), v.end(), bind2nd(my_Print(), origin));//bind2nd将参数绑定为函数对象的第二个参数
  19. //for_each(v.begin(), v.end(), bind1st(my_Print(),origin));//bind1st将参数绑定为函数对象的第一个参数
  20. }

        同时因为函数对象可以有自己的状态所以也可以在函数对象内定义成员变量,通过有参构造来进行,这就是使用函数对象的好处。

  1. class my_Print{
  2. public:
  3. my_Print(int add):m_Add(add){};
  4. void operator()(int value){
  5. cout<<value+m_Add<<" ";
  6. }
  7. private:
  8. int m_Add;
  9. };
  10. int main(){
  11. int add;
  12. cin>>add;
  13. for_each(v.begin(),v.end(),my_Print(add));
  14. //for_each(v.begin(), v.end(), bind2nd(my_Print(),add));
  15. return 0;
  16. }

2、函数指针适配器

        函数指针适配器ptr_fun( )可以把一个普通的函数指针适配成函数对象,从而使用。

  1. void my_Print(int val1,int val2)
  2. {
  3. cout << val1 + val2<< " ";
  4. }
  5. void test()
  6. {
  7. vector <int> v;
  8. for (int i = 0; i < 10; i++)
  9. {
  10. v.push_back(i);
  11. }
  12. // ptr_fun( )把一个普通的函数指针适配成函数对象
  13. for_each(v.begin(), v.end(), bind2nd(ptr_fun(my_Print), 100));
  14. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/470727
推荐阅读
相关标签
  

闽ICP备14008679号