概述
for_each用于逐个遍历容器元素,它对迭代器区间[first,last)所指的每一个元素,执行由单参数函数对象f所定义的操作。
for_each 算法将范围 [first, last) 中的每个元素调用函数 F,并返回输入的参数 f。此函数不会修改序列中的任何元素。
实例
/*******************************************************************
* Copyright (C) chendekai
*
* File Name
: for_each.cpp
* Author
: chendekai
* Create
: 2016-11-28 9:36:36
* Mail
: cdk3@foxmail.com
* Blog
: http://blog.csdn.net/chenzongduozhu
*
* Description : 简单的程序诠释C++ STL算法系列之一
*
非变易算法 : 逐个遍历容器元素 for_each
*
******************************************************************/
/*template<class InputIterator, class Function>
Function for_each(InputIterator first, InputIterator last, Function f)
{
for ( ; first!=last; ++first ) f(*first);
return f;
} */
#include <iostream>
#include <algorithm>
#include <list>
using namespace std;
//display为仿函数
template<typename T>
class display
{
public:
void operator()(const T &x)
{
cout << x << " ";
}
};
//print为仿函数
struct print {
int count;
print() { count = 0; }
void operator()(int x)
{
cout << x << endl;
++count;
}
}myprint;
//普通函数
void myfunction(int i) {
std::cout << ' ' << i;
}
int main()
{
list<int> ilist;
//
//初始化
for (size_t i = 1; i < 10; ++i)
{
ilist.push_back(i);
}
//遍历ilist元素并打印
for_each(ilist.begin(), ilist.end(), display<int>());
for_each(ilist.begin(), ilist.end(), myprint);
for_each(ilist.begin(), ilist.end(), myfunction);
return 0;
}
示例说明:
仿函数,又或叫做函数对象,是STL(标准模板库)六大组件(容器、配置器、迭代器、算法、配接器、仿函数)之一;仿函数虽然小,但却极大的拓展了算法的功能,几乎所有的算法都有仿函数版本。例如,查找算法find_if就是对find算法的扩展,标准的查找是两个元素相等就找到了,但是什么是相等在不同情况下却需要不同的定义,如地址相等,地址和邮编都相等,虽然这些相等的定义在变,但算法本身却不需要改变,这都多亏了仿函数。 仿函数之所以叫做函数对象,是因为仿函数都是定义了()函数运算操作符的类。
最后
以上就是香蕉可乐为你收集整理的for_each函数的全部内容,希望文章能够帮你解决for_each函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复