doc/docs/CPlusPlus-main/32_C++的内建函数对象.md
sairate fa9377e4ae docs(book): 添加现代 C++教程及相关代码
- 新增现代 C++ 教程的 Preface 章节,包括英文和中文版本
- 添加 C++ Primer 练习代码
- 新增 Learn C++ 教程的 C++ 开发简介章节
- 添加头文件解析文档
- 更新 mkdocs.yml,包含新教程的目录结构
- 修改项目设置,使用 Python 3.10环境
2025-07-08 09:52:45 +08:00

4.3 KiB
Raw Blame History

C++的内建函数对象

1. 内建函数对象

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

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

② 用法:

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

2. 算术仿函数

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

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

③ 仿函数原型:

  1. template<class T> T plus<T> //加法仿函数
  2. template<class T> T minus<T> //减法仿函数
  3. template<class T> T multiplies<T> //乘法仿函数
  4. template<class T> T divides<T> //除法仿函数
  5. template<class T> T modulus<T> //取模仿函数
  6. template<class T> T negate<T> //取反仿函数

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

#include<iostream>
using namespace std;
#include<functional>  //内建函数对象头文件

//内建函数对象 算术仿函数

//negate 一元仿函数 取反仿函数
void test01()
{
    negate<int>n;

    cout << n(50) << endl;
}

//plus 二元仿函数  加法
void test02()
{
    plus<int>p;  //写一个int就好了不用写两个int它默认是两个同类型的int相加

    cout << p(50,60) << endl;
}

int main() {

    test01();
    test02();

    system("pause");

    return 0;

}

运行结果:

  • -50
  • 110
  • 请按任意键继续. . .

3. 关系仿函数

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

② 仿函数原型:

  1. template<class T> bool equal_to<T> //等于
  2. template<class T> bool notequal_to<T> //不等于
  3. template<>class T> bool greater<T> //大于
  4. template<class T> bool greater_qual<T> //大于等于
  5. template<class T> bool less<T> //小于
  6. template<class T>bool less_equal<T> //小于等于

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

#include<iostream>
using namespace std;
#include<functional>  //内建函数对象头文件
#include<vector>
#include<algorithm>


//内建函数对象 关系仿函数
//大于 greater
class MyCompare
{
    bool operator()(int v1, int v2)
    {
        return v1 > v2;
    }
};

void test01()
{
    vector<int>v;

    v.push_back(10);
    v.push_back(20);
    v.push_back(30);
    v.push_back(40);
    v.push_back(50);

    for (vector<int>::iterator it = v.begin();it!=v.end();it++)
    {
        cout << *it << " ";
    }
    cout << endl;

    //降序
    
    //方式一
    //sort(v.begin(), v.end(), MyCompare());
    
    //方式二
    sort(v.begin(), v.end(), greater<int>()); //greater<int>()为编译器给提供的函数对象为内建的函数对象

    for (vector<int>::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. template<class T> bool logical_and<T> //逻辑与
  2. template<class T> bool logical_or<T> //逻辑或
  3. template<class T> bool logical_not<T> //逻辑非

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

#include<iostream>
using namespace std;
#include<functional>  //内建函数对象头文件
#include<vector>
#include<algorithm>


//内建函数对象 逻辑仿函数
//逻辑非 logical_not

void test01()
{
    vector<bool>v;

    v.push_back(true);
    v.push_back(false);
    v.push_back(true);
    v.push_back(true);
    v.push_back(false);

    for (vector<bool>::iterator it = v.begin();it!=v.end();it++)
    {
        cout << *it << " ";
    }
    cout << endl;

    //利用逻辑非 将容器v  搬运到 容器v2中并执行取反操作
    vector<bool>v2;
    v2.resize(v.size()); //目标容器要提前开辟一个空间

    transform(v.begin(),v.end(),v2.begin(),logical_not<bool>()); //第一个参数原容器起始迭代器第二个参数原容器终止迭代器第三个参数目标容器起始迭代器

    for (vector<bool>::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
  • 请按任意键继续. . .