C/C++教程

c++ (适配器 && 取反)

本文主要是介绍c++ (适配器 && 取反),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

取反适配器

#include <vector>
#include <algorithm>
#include <functional>
class findDafive :public unary_function<int,bool>
{
public:
	bool operator()(int val) const
	{
		return val>5;
	}
};
//取反适配器
void test02()
{
	//一元取反
	vector<int> v;
	for (int i = 0; i < 10; i++)
		v.push_back(i);
	//查找大于5的数
	//需求改为 找小于5的数
	auto it = find_if(v.begin(), v.end(), not1(findDafive()));
	//高端操作
	auto it = find_if(v.begin(), v.end(), not1(bind2nd(greater<int>(),5)));
	if (it != v.end())
		cout << *it << endl;
}
这篇关于c++ (适配器 && 取反)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!