Loading... STL内建了一些函数对象。分为:算数类函数对象,关系运算类函数对象,逻辑运算类仿函数。这些仿函数所产生的对象,用法和一般函数完全相同,当然我们还可以产生无名的临时对象来履行函数功能。使用内建函数对象,需要引入头文件 ```C++ #include<functional> ``` 6个算数类函数对象,除了negate是一元运算,其他都是二元运算。 ```C++ template<class T> T plus<T>//加法仿函数 template<class T> T minus<T>//减法仿函数 template<class T> T multiplies<T>//乘法仿函数 template<class T> T divides<T>//除法仿函数 template<class T> T modulus<T>//取模仿函数 template<class T> T negate<T>//取反仿函数 ``` 6个关系运算类函数对象,每一种都是二元运算。 ```C++ template<class T> bool equal_to<T>//等于 template<class T> bool not_equal_to<T>//不等于 template<class T> bool greater<T>//大于 template<class T> bool greater_equal<T>//大于等于 template<class T> bool less<T>//小于 template<class T> bool less_equal<T>//小于等于 ``` 逻辑运算类运算函数,not为一元运算,其余为二元运算。 ```C++ template<class T> bool logical_and<T>//逻辑与 template<class T> bool logical_or<T>//逻辑或 template<class T> bool logical_not<T>//逻辑非 ``` 内建函数对象举例: ```C++ #include<iostream> #include<functional> #include<vector> #include<algorithm> using namespace std; int main() { //一、template<class T> T negate<T>//取反 仿函数 negate<int> n1; cout << n1(10) << endl << endl; //二、template<class T> T plus<T>//加法仿函数 plus<int> n2; cout << n2(1, 9); //三、template<class T> bool greater<T>//大于 vector<int> v; v.push_back(11); v.push_back(15); v.push_back(17); v.push_back(22); v.push_back(31); sort(v.begin(), v.end(), greater<int>()); for_each(v.begin(), v.end(), [](int value) {cout << value << endl; }); return 0; } ``` ![](https://blog.fivk.cn/usr/uploads/2021/04/3010891164.png) 最后修改:2021 年 04 月 20 日 © 禁止转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏