飞道的博客

C++(STL源码):40---配接器之(仿函数配接器(function adapters))

265人阅读  评论(0)

一、配接器介绍

  • STL提供的各种配接器中:
    • 改变仿函数接口者:称为function adapter
    • 改变容器接口者:称为container adapter
    • 改变迭代器接口者:称为iterator adapter

二、仿函数配接器介绍

  • 仿函数配接器是所有配接器中数量最庞大的,可以配接、配接、再配接。这些配接器操作包含绑定、否定、组合以及对一般函数或成员函数的修饰(使其成为一个仿函数)
  • 应用层头文件为<functional>,SGI STL实现于<stl_function.j>中
  • function adapters的价值在于,通过它们之间的绑定、组合、修饰能力,几乎可以无限制地创造出各种可能的表达式,搭配STL算法一起使用
  • 容器是以class template完成,算法以function template完成,仿函数是一种将operator()重载的class template,迭代器则是一种将operator++、operator*等重载的class template,然而配接器呢?引用于容器和迭代器身上的配接器都是一种class template
  • 就像container adapters内藏一个container member一样,或是像reverse iterator内藏一个iterator member一样,每个function dapters内藏了一个member object,其类型等同于它所要配接的对象(一个可配接的仿函数)

可配接的关键

  • 所有期望获得配接能力的组件,本身都必须是可配接的,因此:
    • 一元仿函数必须继承自unary_function
    • 二元仿函数必须继承自binary_function
    • 成员函数必须以mem_fun处理过
    • 一般函数必须以ptr_fun处理过。一个未经ptr_fun处理过的一般函数,虽然也可以函数指针的形式传给STL算法使用,但是却没有任何配接能力
  • unary_function、binary_function参阅:https://blog.csdn.net/qq_41453285/article/details/104303680
  • mem_fun、ptr_fun参阅下面介绍

例如:

  • 问题:找出某个序列中所有“不小于12”的元素
  • 解法①:“不小于”就是“大于等于”,我们因此可以选择greater_equal仿函数

   
  1. //greater_less参阅:https://blog.csdn.net/qq_41453285/article/details/104303680
  2. #include <iostream>
  3. #include <vector>
  4. #include <functional>
  5. using namespace std;
  6. int main()
  7. {
  8. std:: vector< int> myVer = { 1, 2, 12, 16, 18 };
  9. auto iter = myVer.cbegin();
  10. for (; iter != myVer.cend(); ++iter) {
  11. if (greater_equal< int>()(*iter, 12)) //如果大于等于12为真
  12. std:: cout << *iter << std:: endl;
  13. }
  14. return 0;
  15. }

 

  • 解法②:但如果希望完全遵守题目语义,坚持找出“不小于”12的元素个数,那么可以这么做:
    • bin2nd:将小于12的元素进行绑定
    • not1:然后再将bin2nd否定,就得到了“不小于”12的语义
not1(bind2nd(less<int>(),12));

   
  1. #include <iostream>
  2. #include <vector>
  3. #include <functional>
  4. using namespace std;
  5. int main()
  6. {
  7. std:: vector< int> myVer = { 1, 2, 12, 16, 18 };
  8. auto iter = myVer.cbegin();
  9. for (; iter != myVer.cend(); ++iter) {
  10. if (not1(bind2nd(less< int>(), 12))(*iter))
  11. std:: cout << *iter << std:: endl;
  12. }
  13. return 0;
  14. }

例如:

  • 我们希望对序列中的每一个元素都做某个特殊运算,这个运算的数学表达式为:

   
  1. f(g(elem))
  2. //其中f和g都是数学函数
  • 那么上面的公式可以这么写:
compose1(f(x), g(y));

例如:

  • 我们希望对容器内的每一个元素v都进行(v+2)*3的操作
  • 那么我们另f(x)=x*3,g(y)=y+2,于是可以写出下面的式子

   
  1. //第一个参数当做f(),第二个参数当做g()
  2. compose1(bind2nd(multiplies< int>(), 3), bind2nd(plus< int>(), 2));
  • 注意,这一长串形成一个表达式,可以拿来和任何接受表达式的算法搭配。不过请注意,这个算法会改变参数的值,所以不能和non-mutating算法搭配。例如不能和for_each搭配,但可以和transform搭配,将结果输出另一地点

   
  1. //注意:compose1接口不在C++标准中,因此无法使用
  2. #include <iostream>
  3. #include <vector>
  4. #include <functional>
  5. #include <algorithm>
  6. #include <iterator>
  7. using namespace std;
  8. int main()
  9. {
  10. ostream_iterator< int> outiter( cout, " ");
  11. int ia[ 6] = { 2, 21, 12, 7, 19, 23 };
  12. vector< int> iv(ia, ia + 6);
  13. //对每一个元素v执行(v+2)*3
  14. //注意:for_each是nonmutating alforithm,所以元素内容不能被改变,执行之后iv的内容都不变
  15. for_each(iv.begin(), iv.end(),
  16. compose1(bind2nd(multiplies< int>(), 3),bind2nd(plus< int>(), 2)));
  17. copy(iv.begin(), iv.end(), outiter); //2 21 12 7 19 23
  18. cout << endl;
  19. //输出到标准输出上,并改变内容
  20. transform(iv.begin(), iv.end(), outiter,
  21. compose1(bind2nd(multiplies< int>(), 3), bind2nd(plus< int>(), 2)));
  22. cout << endl; //12 69 42 27 63 75
  23. return 0;
  24. }

​​​​​​三、仿函数配接器总览

  • 下图是STL function adapters的总览
  • 实际运用时通常我们使用图左的辅助函数而不是自行创建图右边的对象,因为辅助函数的接口比较直观
  • 有些辅助函数可以重载(例如下面的mem_fun()和mem_fun_ref())

配接器使用解析

  • 下面是count_if与bind2nd()使用的例子

演示案例


   
  1. #include <iostream>
  2. #include <vector>
  3. #include <functional>s
  4. #include <algorithm>
  5. #include <iterator>
  6. using namespace std;
  7. void print(int i)
  8. {
  9. cout << i << ' ';
  10. }
  11. class Int
  12. {
  13. public:
  14. explicit Int(int i) :m_i(i) {}
  15. void print1()const { cout << '[' << m_i << ']'; }
  16. private:
  17. int m_i;
  18. };
  19. int main()
  20. {
  21. ostream_iterator< int> outiter( cout, " ");
  22. int ia[ 6] = { 2, 21, 12, 7, 19, 23 };
  23. vector< int> iv(ia, ia + 6);
  24. //找出不小于12的元素个数
  25. cout << count_if(iv.begin(), iv.end, not1(bind2nd(less< int>(), 12)));
  26. cout << endl;
  27. //令每个元素v执行(v+2)*3,然后输出到outiter
  28. transform(iv.begin(), iv.end(), outiter,
  29. compose1(bind2nd(multiplies< int>(), 3), bind2nd(plus< int>(), 2)));
  30. cout << endl;
  31. copy(iv.begin(), iv.end(), outiter);
  32. cout << endl;
  33. //以函数指针搭配STL算法
  34. for_each(iv.begin(), iv.end(), print);
  35. cout << endl;
  36. //以修饰过的一般函数搭配STL算法
  37. for_each(iv.begin(), iv.end(), ptr_fun(print));
  38. cout << endl;
  39. Int t1(3), t2(7), t3(20), t4(14), t5(68);
  40. vector<Int> Iv;
  41. Iv.push_back(t1);
  42. Iv.push_back(t2);
  43. Iv.push_back(t3);
  44. Iv.push_back(t4);
  45. Iv.push_back(t5);
  46. //下面以修饰过的成员函数搭配STL算法
  47. for_each(Iv.begin(), Iv.end(), mem_fun_ref(&Int::print1));
  48. cout << endl;
  49. return 0;
  50. }
  • 上面的例子打印函数不能设计成下面的样子,因为不符合for_each()的接口需求:

四、对返回值进行逻辑否定(not1、not2)

  • 源代码中出现的pred是predicate的缩写,意思为会返回真假值的表达式

not1


   
  1. //配接器,用来表示某个Adaptable Predicate的逻辑负值
  2. template< class Predicate>
  3. class unary_negate : public unary_function< typename Predicate::argument_type, bool>
  4. {
  5. protected:
  6. Predicate pred; //内部成员
  7. public:
  8. explicit unary_negate(const Predicate& x) :pred(x) {}
  9. bool operator()(const typename Predicate::argument_type& x)const
  10. {
  11. return !pred(x); //将pred的运算结果加上否定运算
  12. }
  13. };
  14. //辅助函数,内部直接使用unary_negate
  15. template< class Predicate>
  16. inline unary_negate<Predicate> not1(const Predicate& pred)
  17. {
  18. return unary_negate<Predicate>(pred);
  19. }

not2


   
  1. //配接器,用来表示某个Adaptable Binary Predicate的逻辑负值
  2. template< class Predicate>
  3. class binary_negate
  4. : public binary_function< typename Predicate::first_argument_type
  5. , typename Predicate::second_argument_type
  6. , bool>
  7. {
  8. protected:
  9. Predicate pred; //内部成员
  10. public:
  11. explicit binary_negate(const Predicate& x) :pred(x) {}
  12. bool operator()(const typename Predicate::first_argument_type& x
  13. , const typename Predicate::second_argument_type& y) const
  14. {
  15. return !pred(x, y); //将pred的运算结果加上否定运算
  16. }
  17. };
  18. //辅助函数,内部直接使用binary_negate
  19. template< class Predicate>
  20. inline binary_negate<Predicate> not2(const Predicate& pred)
  21. {
  22. return binary_negate<Predicate>(pred);
  23. }

五、对参数进行绑定(bind1st、bind2nd)

bind1st


   
  1. //配接器,用来表示某个Adaptable Binary Predicate转换为Unary Function
  2. template< class Operation>
  3. class binder1st
  4. : public unary_function< typename Operation:second_argument_typefirst_argument_type
  5. , typename Operation::result_type>
  6. {
  7. protected:
  8. Operation op; //内部成员
  9. typename Operation::first_argument_type value; //内部成员
  10. public:
  11. binder1st( const Operation& x,
  12. const typename Operation::first_argument_type& y)
  13. :op(x), value(y) {} //将表达式和第一参数记录在内部成员
  14. typename Operation:: result_type
  15. operator () (const typename Operation::first_argument_type& x) const
  16. {
  17. return op(value, x); //实际调用表达式,并将value绑定为第一参数
  18. }
  19. };
  20. //辅助函数,内部直接使用binder1st
  21. template< class Operation,class T>
  22. inline binder1st<Operation> bind1st(const Operation& op,const T& x)
  23. {
  24. typedef typename Operation::first_argument_type arg1_type
  25. return binder1st<Operation>(op, arg1_type);
  26. //注意,上面先把x转换为op的第一参数类型
  27. }

bind2st


   
  1. //配接器,用来表示某个Adaptable Binary Predicate转换为Unary Function
  2. template< class Operation>
  3. class binder2nd
  4. : public unary_function< typename Operation:second_argument_typefirst_argument_type
  5. , typename Operation::result_type>
  6. {
  7. protected:
  8. Operation op; //内部成员
  9. typename Operation::first_argument_type value; //内部成员
  10. public:
  11. binder2nd( const Operation& x,
  12. const typename Operation::first_argument_type& y)
  13. :op(x), value(y) {} //将表达式和第一参数记录在内部成员
  14. typename Operation:: result_type
  15. operator () (const typename Operation::first_argument_type& x) const
  16. {
  17. return op(x, value); //实际调用表达式,并将value绑定为第二参数
  18. }
  19. };
  20. //辅助函数,内部直接使用binder1st
  21. template< class Operation,class T>
  22. inline binder2nd<Operation> bind2nd(const Operation& op,const T& x)
  23. {
  24. typedef typename Operation::second_argument_type arg2_type
  25. return binder2nd<Operation>(op, arg1_type);
  26. //注意,上面先把x转换为op的第二参数类型
  27. }

六、用于函数合成(compose1、compose2)

  • 这两个配接器不在C++标准中,因此应用层不可以使用,是SGI的私有品

compose1

compose2

七、用于函数指针(ptr_fun)

  • 这种配接器使我们将一般函数当做仿函数使用。一般函数当做仿函数传递给STL算法,就好像原生指针可被当做迭代器传送STL算法一样
  • 但如果你不是用这里所说明的两个配接器先做一下包装,你所使用的那个一般算法将无配接能力,也就无法和前面介绍的其它配接器相使用

ptr_fun版本①

ptr_fun版本②

八、用于成员函数指针(mem_fun、mem_fun_ref)

  • 这种配接器使我们能够将成员函数当做仿函数来使用,于是成员函数可以搭配各种泛型算法。当容器的元素类型是X&或X*,而我们又以虚拟成员函数作为仿函数,便可以由泛型算法完成所谓的多态调用。这是泛型与多态之间的一个重要接轨

演示案例

  • 下面是一个实例,下图是案例中的类阶层体系和实际产生出来的容器状态


   
  1. #include <iostream>
  2. #include <vector>
  3. #include <functional>
  4. #include <algorithm>
  5. using namespace std;
  6. class Shape { public: virtual void display() = 0; };
  7. class Rect : public Shape {
  8. public:
  9. virtual void display() {
  10. cout << "Rect";
  11. }
  12. };
  13. class Circle : public Shape {
  14. public:
  15. virtual void display() {
  16. cout << "Circle";
  17. }
  18. };
  19. class Square : public Shape {
  20. public:
  21. virtual void display() {
  22. cout << "Square";
  23. }
  24. };
  25. int main()
  26. {
  27. vector<Shape*> V;
  28. V.push_back( new Rect);
  29. V.push_back( new Circle);
  30. V.push_back( new Square);
  31. V.push_back( new Circle);
  32. V.push_back( new Rect);
  33. for ( int i = 0; i < V.size(); ++i)
  34. (V[i])->display();
  35. cout << endl;
  36. for_each(V.begin(), V.end(), mem_fun(&Shape::display));
  37. cout << endl;
  38. return 0;
  39. }
  • 就语法而言,你不能写成:
for_each(V.begin(), V.end(), &Shape::display);
  • 也不能写成:
for_each(V.begin(), V.end(), Shape::display);
  • 一定要以配接器mem_fun修饰才能被算法接受
  • 另外一个需要注意的是,虽然多态可以对pointer或reference起作用,但很可惜,STL容器只支持“实值语意”,不支持“引用语意”,因此下面这样无法通过编译
vector<Shape&> V;

源码


转载:https://blog.csdn.net/qq_41453285/article/details/104400635
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场