STL内建了一些函数对象。分为:算数类函数对象,关系运算类函数对象,逻辑运算类仿函数。这些仿函数所产生的对象,用法和一般函数完全相同,当然我们还可以产生无名的临时对象来履行函数功能。使用内建函数对象,需要引入头文件 functional
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
//内建函数对象头文件
#include <functional>
#include <vector>
#include <algorithm>void test01()
{//template<class T> T negate<T>//取反仿函数negate<int>n;cout << n(10) << endl;//加法 template<class T> T plus<T>//加法仿函数plus<int> p;cout << p(1, 1) << endl;
}//template<class T> bool greater<T>//大于void test02()
{vector<int>v;v.push_back(10);v.push_back(30);v.push_back(50);v.push_back(20);v.push_back(40);sort(v.begin(), v.end(), greater<int>());for_each(v.begin(), v.end(), [](int val){ cout << val << " "; });
}int main(){//test01();test02();system("pause");return EXIT_SUCCESS;
}
-------分割线--------
sort 排序,第三个参数可以是函数名,也可以是函数对象
#include <string>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;bool myparse(int v1, int v2) {return v1 > v2;
}
class MyParse {
public:bool operator() (int v1, int v2) {return v1 > v2;}
};
void test1() {vector<int> v1;v1.push_back(20);v1.push_back(35);v1.push_back(5);for (vector<int>::iterator it = v1.begin(); it != v1.end(); ++it) {cout << *it << endl;}sort(v1.begin(), v1.end());cout << "--" << endl;for (vector<int>::iterator it = v1.begin(); it != v1.end(); ++it) {cout << *it << endl;}/*sort(v1.begin(), v1.end(), myparse); // 通过函数,可以实现自定义排序cout << "--" << endl;for (vector<int>::iterator it = v1.begin(); it != v1.end(); ++it) {cout << *it << endl;}*/sort(v1.begin(), v1.end(), MyParse()); // 通过函数对象, 也可以实现自定义排序cout << "--" << endl;for (vector<int>::iterator it = v1.begin(); it != v1.end(); ++it) {cout << *it << endl;}
}
int main()
{test1();return 0;
}