C++ 中的仿函数 functor

2023-10-29 21:12
文章标签 c++ 函数 functor

本文主要是介绍C++ 中的仿函数 functor,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一   仿函数的概念

1. 定义

  仿函数(functor)是一种使用上像函数的类,其本质是一个实现了 operato() 函数的类,这种类就有了类似于函数一样的使用行为,这就是仿函数的类。

仿函数在 C++ STL标准库中被大量使用。

2. 特点

1. 仿函数是一个类,不是一个函数

2. 仿函数的类需要重载 operator() 函数,以此拥有函数的行为

二  STL 中常见的 仿函数介绍

1. 基类

  1.1  unary_function

 /***  This is one of the @link functors functor base classes@endlink.*/template<typename _Arg, typename _Result>struct unary_function{/// @c argument_type is the type of the argumenttypedef _Arg 	argument_type;   /// @c result_type is the return typetypedef _Result 	result_type;  };

   作为拥有一个输入参数的仿函数常用基类,该类主要回答了两个问题:

     1. 该仿函数类的输入参数是什么类型:argument_type

     2. 该仿函数类的返回参数是什么类型: result_type

  1.2  binary_function

 /***  This is one of the @link functors functor base classes@endlink.*/template<typename _Arg1, typename _Arg2, typename _Result>struct binary_function{/// @c first_argument_type is the type of the first argumenttypedef _Arg1 	first_argument_type; /// @c second_argument_type is the type of the second argumenttypedef _Arg2 	second_argument_type;/// @c result_type is the return typetypedef _Result 	result_type;};

作为拥有两个输入参数的仿函数常用基类,该类主要回答了两个问题:

     1. 该仿函数类的输入参数是什么类型:first_argument_type 与 second_argument_type

     2. 该仿函数类的返回参数是什么类型: result_type

2.  STL 中常见仿函数

2.1  plus

 /// One of the @link arithmetic_functors math functors@endlink.template<typename _Tp>struct plus : public binary_function<_Tp, _Tp, _Tp>{_Tpoperator()(const _Tp& __x, const _Tp& __y) const{ return __x + __y; }};

2.2 minus

/// One of the @link arithmetic_functors math functors@endlink.template<typename _Tp>struct minus : public binary_function<_Tp, _Tp, _Tp>{_Tpoperator()(const _Tp& __x, const _Tp& __y) const{ return __x - __y; }};

2.3  multiplies

  /// One of the @link arithmetic_functors math functors@endlink.template<typename _Tp>struct multiplies : public binary_function<_Tp, _Tp, _Tp>{_Tpoperator()(const _Tp& __x, const _Tp& __y) const{ return __x * __y; }};

2.4  divides

template<typename _Tp>struct divides : public binary_function<_Tp, _Tp, _Tp>{_Tpoperator()(const _Tp& __x, const _Tp& __y) const{ return __x / __y; }};

2.5  equal_to

 /// One of the @link comparison_functors comparison functors@endlink.template<typename _Tp>struct equal_to : public binary_function<_Tp, _Tp, bool>{booloperator()(const _Tp& __x, const _Tp& __y) const{ return __x == __y; }};

2.6  less

 /// One of the @link comparison_functors comparison functors@endlink.template<typename _Tp>struct less : public binary_function<_Tp, _Tp, bool>{booloperator()(const _Tp& __x, const _Tp& __y) const{ return __x < __y; }};

2.7  greater

/// One of the @link comparison_functors comparison functors@endlink.template<typename _Tp>struct greater : public binary_function<_Tp, _Tp, bool>{booloperator()(const _Tp& __x, const _Tp& __y) const{ return __x > __y; }};

2.8   _Select1st

template<typename _Pair>struct _Select1st: public unary_function<_Pair, typename _Pair::first_type>{typename _Pair::first_type&operator()(_Pair& __x) const{ return __x.first; }const typename _Pair::first_type&operator()(const _Pair& __x) const{ return __x.first; }};

2.9  _Select2nd

template<typename _Pair>struct _Select2nd: public unary_function<_Pair, typename _Pair::second_type>{typename _Pair::second_type&operator()(_Pair& __x) const{ return __x.second; }const typename _Pair::second_type&operator()(const _Pair& __x) const{ return __x.second; }};

3. 使用例子

#include<algorithm>
#include<iostream>int main()
{// 1. plusstd::cout << "------ plus ------" << std::endl;std::vector<int>  vec = {1, 3, 5};std::plus<int> pl;int init = 0;int res1 = std::accumulate(vec.begin(), vec.end(), init, pl);std::cout << res1 << std::endl;std::cout << "------ plus ------" << std::endl; // 9// 2. minusstd::cout << "------ minus ------" << std::endl;init = 10;std::minus<int> mis;int res2 =  std::accumulate(vec.begin(), vec.end(), init, mis);std::cout << res2 << std::endl; // 1std::cout << "------ minus ------" << std::endl;// 3. multiesstd::cout << "------ multies ------" << std::endl;init = 1;std::multiplies<int> multiply;int res3 = std::accumulate(vec.begin(), vec.end(), init, multiply);std::cout << res3 << std::endl; // 15std::cout << "------ multies ------" << std::endl;// 4. dividesstd::cout << "------ divides ------" << std::endl;init = 90;std::divides<int> divid;int res4 = std::accumulate(vec.begin(), vec.end(), init, divid);std::cout << res4 << std::endl; // 6std::cout << "------ divides ------" << std::endl;// 5. equal_tostd::cout << "------ equal_to ------" << std::endl;std::pair<int, std::string> pair1 = std::make_pair(1, "abc");std::pair<int, std::string> pair2 = std::make_pair(2, "abc");std::equal_to<std::string> equal;std::_Select2nd<std::pair<int, std::string>> second_argu;std::cout << equal(second_argu(pair1), second_argu(pair2)) << std::endl;// 1std::cout << "------ equal_to ------" << std::endl;// 6. lessstd::cout << "------ less ------" << std::endl;std::less<int> less;std::cout << less(3, 6) << std::endl; // 1std::cout << "------ less ------" << std::endl;// 7. greaterstd::cout << "------ greater ------" << std::endl;std::greater<int> greater;std::cout << greater(3, 6) << std::endl; // 0std::cout << "------ greater ------" << std::endl;// 8. _Select1ststd::cout << "------ _Select1st ------" << std::endl;std::pair<int, std::string> pair3 = std::make_pair(1, "abc");std::_Select1st<std::pair<int, std::string>> select1st;std::cout << select1st(pair3) << std::endl; // 1std::cout << "------ _Select1st ------" << std::endl;// 9. _Select2ndstd::cout << "------ _Select2nd ------" << std::endl;std::pair<int, std::string> pair4 = std::make_pair(1, "abc");std::_Select2nd<std::pair<int, std::string>> select2nd;std::cout << select2nd(pair3) << std::endl; // abcstd::cout << "------ _Select2nd ------" << std::endl;return 0;
}

输出:

这篇关于C++ 中的仿函数 functor的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/303383

相关文章

golang panic 函数用法示例详解

《golangpanic函数用法示例详解》在Go语言中,panic用于触发不可恢复的错误,终止函数执行并逐层向上触发defer,最终若未被recover捕获,程序会崩溃,recover用于在def... 目录1. panic 的作用2. 基本用法3. recover 的使用规则4. 错误处理建议5. 常见错

C++一个数组赋值给另一个数组方式

《C++一个数组赋值给另一个数组方式》文章介绍了三种在C++中将一个数组赋值给另一个数组的方法:使用循环逐个元素赋值、使用标准库函数std::copy或std::memcpy以及使用标准库容器,每种方... 目录C++一个数组赋值给另一个数组循环遍历赋值使用标准库中的函数 std::copy 或 std::

C++使用栈实现括号匹配的代码详解

《C++使用栈实现括号匹配的代码详解》在编程中,括号匹配是一个常见问题,尤其是在处理数学表达式、编译器解析等任务时,栈是一种非常适合处理此类问题的数据结构,能够精确地管理括号的匹配问题,本文将通过C+... 目录引言问题描述代码讲解代码解析栈的状态表示测试总结引言在编程中,括号匹配是一个常见问题,尤其是在

使用C++实现链表元素的反转

《使用C++实现链表元素的反转》反转链表是链表操作中一个经典的问题,也是面试中常见的考题,本文将从思路到实现一步步地讲解如何实现链表的反转,帮助初学者理解这一操作,我们将使用C++代码演示具体实现,同... 目录问题定义思路分析代码实现带头节点的链表代码讲解其他实现方式时间和空间复杂度分析总结问题定义给定

C++初始化数组的几种常见方法(简单易懂)

《C++初始化数组的几种常见方法(简单易懂)》本文介绍了C++中数组的初始化方法,包括一维数组和二维数组的初始化,以及用new动态初始化数组,在C++11及以上版本中,还提供了使用std::array... 目录1、初始化一维数组1.1、使用列表初始化(推荐方式)1.2、初始化部分列表1.3、使用std::

C++ Primer 多维数组的使用

《C++Primer多维数组的使用》本文主要介绍了多维数组在C++语言中的定义、初始化、下标引用以及使用范围for语句处理多维数组的方法,具有一定的参考价值,感兴趣的可以了解一下... 目录多维数组多维数组的初始化多维数组的下标引用使用范围for语句处理多维数组指针和多维数组多维数组严格来说,C++语言没

Python itertools中accumulate函数用法及使用运用详细讲解

《Pythonitertools中accumulate函数用法及使用运用详细讲解》:本文主要介绍Python的itertools库中的accumulate函数,该函数可以计算累积和或通过指定函数... 目录1.1前言:1.2定义:1.3衍生用法:1.3Leetcode的实际运用:总结 1.1前言:本文将详

轻松上手MYSQL之JSON函数实现高效数据查询与操作

《轻松上手MYSQL之JSON函数实现高效数据查询与操作》:本文主要介绍轻松上手MYSQL之JSON函数实现高效数据查询与操作的相关资料,MySQL提供了多个JSON函数,用于处理和查询JSON数... 目录一、jsON_EXTRACT 提取指定数据二、JSON_UNQUOTE 取消双引号三、JSON_KE

MySQL数据库函数之JSON_EXTRACT示例代码

《MySQL数据库函数之JSON_EXTRACT示例代码》:本文主要介绍MySQL数据库函数之JSON_EXTRACT的相关资料,JSON_EXTRACT()函数用于从JSON文档中提取值,支持对... 目录前言基本语法路径表达式示例示例 1: 提取简单值示例 2: 提取嵌套值示例 3: 提取数组中的值注意

c++中std::placeholders的使用方法

《c++中std::placeholders的使用方法》std::placeholders是C++标准库中的一个工具,用于在函数对象绑定时创建占位符,本文就来详细的介绍一下,具有一定的参考价值,感兴... 目录1. 基本概念2. 使用场景3. 示例示例 1:部分参数绑定示例 2:参数重排序4. 注意事项5.