STL中的二元函数binary_function

      

       函数对象是重载了operator()的类的一个实例,operator()是函数调用运算符。

标准C++库根据operator()参数个数加以划分,主要有以下几种类型:

       1  发生器:一种没有参数且返回一个任意类型值的函数对象,例如随机数发生器。

       2  一元函数:一种只有一个任意类型的参数,且返回一个可能不同类型值的函数对象。

       3  二元函数:一种有两个任意类型的参数,且返回一个可能不同类型值的函数对象。

       4  一元判定函数:返回bool型值的一元函数。

       5  二元判定函数:返回bool型值的二元函数。


     样例

     //1   一个自定义类型

     

#include 
#include 
using namespace std;

class Student
{
public:
	Student(void);
	~Student(void);

public:
	string _stuName;
	float  _stuScore;

public:
	Student(string stuName,float stuScore)
	{
		_stuName=stuName;
		_stuScore=stuScore;
	}

	//布尔运算符重载
	bool operator <(const Student& stu)
	{
		return _stuScore
 

//2  重载系统二元函数

#pragma once
#include 
using namespace std;


//不能有构造函数
template 
class binary_sort:public binary_function
{
public:
	bool operator()(inPara in1,outPara in2)
	{
		return in1

//3  使用样例

 

#include "stdafx.h"

#include 
#include 
#include 
#include 
#include 

#include "Student.h"
#include "binary_sort.h"


int _tmain(int argc, _TCHAR* argv[])
{

	vectorv;

	//向量赋值
	Student s1("11111",67);
	v.push_back(s1);

	Student s2("2222",45);
	v.push_back(s2);

	Student s3("33333",78);
	v.push_back(s3);

   //利用函数对象,输出各个元素
   cout<<"before sort()"<());

   for_each(v.begin(),v.end(),Student());


	getchar();
	return 0;
}


你可能感兴趣的:(c/c++/vc,STL)