当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ all_of()用法及代码示例


如果 'pred' 参数的值为真,则 C++ 算法 all_of() 函数返回真值。对于 [first, last] 范围内的所有元素,该值应为 true。

用法

template <class InputIterator, class UnaryPredicate>
bool all_of (InputIterator first, InputIterator last, UnaryPredicate pred);

参数

first:它指定列表中的第一个元素。

last:它指定列表中的最后一个元素。

pred:它是一个接受范围内参数的一元函数。

返回值

该函数有一种返回类型,'true'。如果参数 'pred' 的值对于范围的所有元素都为真,则返回值 'true',否则为假。

例子1

#include<iostream>
#include<algorithm>
#include<array>
int main()
{
	std::array<int, 6> arr= {25,27,29,31,33,35};
	if ( std::all_of(arr.begin(), arr.end(), [](int k) {return k%2;} ) )
	std::cout <<"All the array elements are odd.";
	return 0;
}

输出:

All the array elements are odd.

例子2

#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
	int ar[6] = {2, 5, -7, -9, 3, 5};
	all_of(ar, ar+6, [](int x) { return x>0; })?
	cout<<"All elements are positive \n":
	cout<<"All elements are not positive";
	return 0;
}

输出:

All elements are not positive 

复杂度

该函数线性移动,从第一个元素开始向最后一个元素移动。对于列表的每个元素,检查 'pred' 的值。搜索继续进行,直到遇到 'pred' 值不匹配为止。

数据竞争

该函数或者访问指定范围内的所有对象,或者访问其中的一些对象。

异常

如果任何参数抛出异常,该函数将抛出异常。






相关用法


注:本文由纯净天空筛选整理自 C++ Algorithm Functions all_of()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。