简单来将,仿函数(functor)就是一个重载了"()"运算符的struct或class,利用对象支持operator()的特性,来达到模拟函数调用效果的技术. 我们平时对一个集合类遍历的时候,例如vector,是这样做的: for(vector<int>::const_iterator iter = ivec.begin(); iter != ivec.end(); ++iter) { //do your whatever you want here } 例如下面的代码:…
在上一篇文章中介绍了C++11新引入的lambda表达式(C++支持闭包的实现),现在我们看一下lambda的出现对于我们编程习惯的影响,毕竟,C++11历经10年磨砺,出140新feature,对于我们的programming idiom有深远影响.我们先看一下是不是lambda的出现对于仿函数的影响. 1) 仿函数 wikipedia 的定义: A function object, also called a functor, functional, or functionoid, is a…
谓词与函数对象 谓词 predicate C++ 标准定义谓词如下: The Predicate parameter is used whenever an algorithm expects a function object that when applied to the result of dereferencing the corresponding iterator returns a value testable as true. In other words, if an alg…
std::for_each 先贴cppreference中对for_each的概述: template< class InputIt, class UnaryFunction > //此处UnaryFunction为一元函数 UnaryFunction for_each( InputIt first, InputIt last, UnaryFunction f ); 1) Applies the given function object f to the result of derefere…
http://www.cplusplus.com/reference/algorithm/for_each/ template<class InputIterator, class Function> Function for_each(InputIterator first, InputIterator last, Function fn) { while (first!=last) { fn (*first); ++first; } return fn; // or, since C++1…
有三种办法可以从“运用了function object”的算法中获取“结果”或“反馈”: 1.在外部持有状态,并让function object指向它: 2.以by reference方式传递function object: 3.利用for_each()算法的返回值. for_each()有一个其他算法都没有的绝技,可以传回其function object. class MeanValue { private: long num; // number of elements long sum;…