描述
C++ 函数std::algorithm::for_each()在范围的每个元素上应用提供的函数。
声明
以下是 std::algorithm::for_each() 函数形式 std::algorithm 头文件的声明。
C++98
template <class InputIterator, class Function> Function for_each (InputIterator first, InputIterator last, Function fn);
参数
first− 将迭代器输入到初始位置。
last− 到最终位置的最终迭代器。
fn- 接受范围内的元素作为参数的一元函数。
返回值
返回函数fn。
异常
线性。
时间复杂度
如果有任何一个函数,则抛出异常fn或者对迭代器的操作抛出异常。
请注意无效的参数会导致未定义的行为。
示例
下面的例子展示了 std::algorithm::for_each() 函数的用法。
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int print_even(int n) {
if (n % 2 == 0)
cout << n << ' ';
}
int main(void) {
vector<int> v = {1, 2, 3, 4, 5};
cout << "Vector contains following even numebr" << endl;
for_each(v.begin(), v.end(), print_even);
cout << endl;
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果 -
Vector contains following even numebr 2 4
相关用法
- C++ Algorithm find_if_not()用法及代码示例
- C++ Algorithm find_first_of()用法及代码示例
- C++ Algorithm fill()用法及代码示例
- C++ Algorithm find()用法及代码示例
- C++ Algorithm find_end()用法及代码示例
- C++ Algorithm fill_n()用法及代码示例
- C++ Algorithm find_if()用法及代码示例
- C++ Algorithm copy()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
- C++ Algorithm remove()用法及代码示例
- C++ Algorithm max_element()用法及代码示例
- C++ Algorithm equal()用法及代码示例
- C++ Algorithm set_union()用法及代码示例
- C++ Algorithm next_permutation()用法及代码示例
- C++ Algorithm upper_bound()用法及代码示例
- C++ Algorithm minmax()用法及代码示例
- C++ Algorithm remove_copy_if()用法及代码示例
- C++ Algorithm pop_heap()用法及代码示例
- C++ Algorithm adjacent_find()用法及代码示例
- C++ Algorithm replace_if()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Algorithm Library - for_each() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。