【C++笔记】第二十五篇 内建函数对象
创始人
2024-04-03 01:59:33
0

C++的内建函数对象

1. 内建函数对象

① STL内建来了一些函数对象:

  1. 算术仿函数
  2. 关系仿函数
  3. 逻辑仿函数

② 用法:

  1. 这些仿函数所产生的对象,用法和一般函数完全相同。
  2. 使用内建函数对象,需要引入头文件 #include

2. 算术仿函数

① 功能描述:实现四则运算。

② 其中negate是一元运算,其他都是二元运算。

③ 仿函数原型:

  1. templateTplustemplate T plustemplateTplus //加法仿函数
  2. templateTminustemplate T minustemplateTminus //减法仿函数
  3. templateTmultipliestemplate T multipliestemplateTmultiplies //乘法仿函数
  4. templateTdividestemplate T dividestemplateTdivides //除法仿函数
  5. templateTmodulustemplate T modulustemplateTmodulus //取模仿函数
  6. templateTnegatetemplate T negatetemplateTnegate //取反仿函数

④ 使用内建函数对象时,需要引入头文件#include

#include
using namespace std;
#include  //内建函数对象头文件//内建函数对象 算术仿函数//negate 一元仿函数 取反仿函数
void test01()
{negaten;cout << n(50) << endl;
}//plus 二元仿函数  加法
void test02()
{plusp;  //写一个int就好了,不用写两个int,它默认是两个同类型的int相加cout << p(50,60) << endl;
}int main() {test01();test02();system("pause");return 0;}
运行结果:- -50- 110- 请按任意键继续. . .

3. 关系仿函数

① 功能描述:实现关系对比。

② 仿函数原型:

  1. templateboolequaltotemplate bool equal_totemplateboolequalt​o //等于
  2. templateboolnotequaltotemplate bool notequal_totemplateboolnotequalt​o //不等于
  3. template<>classT>boolgreatertemplate<>class T> bool greatertemplate<>classT>boolgreater //大于
  4. templateboolgreaterqualtemplate bool greater_qualtemplateboolgreaterq​ual //大于等于
  5. templateboollesstemplate bool lesstemplateboolless //小于
  6. templateboollessequaltemplatebool less_equaltemplateboollesse​qual //小于等于

③ 关系仿函数中最常用的就是greater<>大于。

#include
using namespace std;
#include  //内建函数对象头文件
#include
#include//内建函数对象 关系仿函数
//大于 greater
class MyCompare
{bool operator()(int v1, int v2){return v1 > v2;}
};void test01()
{vectorv;v.push_back(10);v.push_back(20);v.push_back(30);v.push_back(40);v.push_back(50);for (vector::iterator it = v.begin();it!=v.end();it++){cout << *it << " ";}cout << endl;//降序//方式一://sort(v.begin(), v.end(), MyCompare());//方式二:sort(v.begin(), v.end(), greater()); //greater()为编译器给提供的函数对象,为内建的函数对象for (vector::iterator it = v.begin(); it != v.end(); it++){cout << *it << " ";}cout << endl;
}int main() {test01();system("pause");return 0;}
运行结果:- 10 20 30 40 50- 50 40 30 20 10- 请按任意键继续. . .

4. 逻辑仿函数

① 功能描述:实现关系对比

② 仿函数原型:

  1. templateboollogicalandtemplate bool logical_andtemplateboollogicala​nd //逻辑与
  2. templateboollogicalortemplate bool logical_ortemplateboollogicalo​r //逻辑或
  3. templateboollogicalnottemplate bool logical_nottemplateboollogicaln​ot //逻辑非

③ 逻辑仿函数实际应用较少,了解即可。

#include
using namespace std;
#include  //内建函数对象头文件
#include
#include//内建函数对象 逻辑仿函数
//逻辑非 logical_notvoid test01()
{vectorv;v.push_back(true);v.push_back(false);v.push_back(true);v.push_back(true);v.push_back(false);for (vector::iterator it = v.begin();it!=v.end();it++){cout << *it << " ";}cout << endl;//利用逻辑非 将容器v  搬运到 容器v2中,并执行取反操作vectorv2;v2.resize(v.size()); //目标容器要提前开辟一个空间transform(v.begin(),v.end(),v2.begin(),logical_not()); //第一个参数:原容器起始迭代器,第二个参数:原容器终止迭代器,第三个参数:目标容器起始迭代器for (vector::iterator it = v2.begin(); it != v2.end(); it++){cout << *it << " ";}cout << endl;
}int main() {test01();system("pause");return 0;}
运行结果:- 1 0 1 1 0- 0 1 0 0 1- 请按任意键继续. . .

相关内容

热门资讯

前端-session、jwt 目录:   (1)session (2&#x...
linux入门---制作进度条 了解缓冲区 我们首先来看看下面的操作: 我们首先创建了一个文件并在这个文件里面添加了...
关于测试,我发现了哪些新大陆 关于测试 平常也只是听说过一些关于测试的术语,但并没有使用过测试工具。偶然看到编程老师...
前缀和与对数器与二分法 1. 前缀和 假设有一个数组,我们想大量频繁的去访问L到R这个区间的和,...
nodejs:本地安装nvm实... 一、背景-使用不同版本node的原因 vue3+ts、nuxt3版本,node...
JAVA集合知识整理 Java集合知识整理 HashMap相关 HashMap的底层数据结构:jdk1.8之...
无刷直流电机介绍及单片机控制实... 无刷直流电机介绍及单片机控制实例前言基本概念优势与劣势使用寿命基本结构使用单片机控制实例电子调速器&...
fwdiary(2) dp2 1.传纸条  AcWing 275. 传纸条 - AcWing 走两条路,走一条最大的...
常用的DOS命令 常用的DOS命令 DOS(Disk Operating System,磁...
<C++> 类和对象(下) 1.const成员函数将const修饰的“成员函数”称之为const成员函数,cons...