C++中二元函数对象和二元谓词

在c++ STL算法中,在算法的输入和输出中,一定要分清是函数对象,还是谓词,还是迭代器。

 

具体看如下代码,注意看注释:

#include<iostream>
using namespace std;
#include "string"
#include <vector>
#include <list>
#include <set>
#include <algorithm>
#include <functional>


//二元函数对象
template<typename T>
class SumAdd
{
public:
	T operator()(T t1, T t2)
	{
		return t1 + t2;
	}
};

//函数模板  ==函数
template <typename T>
void FuncShowElemt(T& t)
{
	cout << t << endl;
}

//普通函数
void FuncShowElemt2(int& t)
{
	cout << t << " ";
}


//二元谓词
template<typename T>
bool Mycompare(const T& a, const T& b)
{
	return a < b;
}



void main04()
{
	vector<int> v1, v2;
	vector<int> v3;
	v1.push_back(1);
	v1.push_back(3);
	v1.push_back(5);

	v2.push_back(2);
	v2.push_back(4);
	v2.push_back(6);
	v3.resize(10);

	/*
	template<clas
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值