【c++STL算数仿函数,关系仿函数,逻辑仿函数】

文章目录

      • [C++ STL中的算数、关系和逻辑仿函数](#C++ STL中的算数、关系和逻辑仿函数)
      • [1. 算数仿函数](#1. 算数仿函数)
      • [2. 关系仿函数](#2. 关系仿函数)
      • [3. 逻辑仿函数](#3. 逻辑仿函数)

C++ STL中的算数、关系和逻辑仿函数

STL(Standard Template Library)是C++标准库的一部分,提供了许多强大的工具和功能,其中包括仿函数(function object)。仿函数是一种类或结构体,类似函数指针,可被用于执行函数调用。在STL中,有三种重要的仿函数类型:算数、关系和逻辑仿函数。

1. 算数仿函数

算数仿函数用于执行基本的数学运算,如加法、减法、乘法和除法。STL提供了几个算数仿函数,包括 plusminusmultipliesdivides

实战示例:

cpp 复制代码
#include <iostream>
#include <functional>

int main() {
    std::plus<int> add;
    std::minus<int> subtract;
    std::multiplies<int> multiply;
    std::divides<int> divide;

    int a = 10, b = 5;

    // 使用算数仿函数执行运算
    std::cout << "Addition: " << add(a, b) << std::endl;
    std::cout << "Subtraction: " << subtract(a, b) << std::endl;
    std::cout << "Multiplication: " << multiply(a, b) << std::endl;
    std::cout << "Division: " << divide(a, b) << std::endl;

    return 0;
}

2. 关系仿函数

关系仿函数用于比较两个值的关系,返回布尔值,如 greaterlessequal_to 等。这些仿函数可以用于容器的排序和查找算法。

实战示例:

cpp 复制代码
#include <iostream>
#include <functional>

int main() {
    std::greater<int> greater_than;
    std::less<int> less_than;
    std::equal_to<int> equal;

    int x = 10, y = 5;

    // 使用关系仿函数比较值的关系
    std::cout << "x > y: " << greater_than(x, y) << std::endl;
    std::cout << "x < y: " << less_than(x, y) << std::endl;
    std::cout << "x == y: " << equal(x, y) << std::endl;

    return 0;
}

3. 逻辑仿函数

逻辑仿函数执行逻辑运算,比如逻辑与、逻辑或和逻辑非。STL中提供了 logical_andlogical_orlogical_not 等仿函数。

实战示例:

cpp 复制代码
#include <iostream>
#include <functional>

int main() {
    std::logical_and<bool> logic_and;
    std::logical_or<bool> logic_or;
    std::logical_not<bool> logic_not;

    bool p = true, q = false;

    // 使用逻辑仿函数执行逻辑运算
    std::cout << "p && q: " << logic_and(p, q) << std::endl;
    std::cout << "p || q: " << logic_or(p, q) << std::endl;
    std::cout << "!p: " << logic_not(p) << std::endl;

    return 0;
}
相关推荐
IU宝7 分钟前
vector的使用,以及部分功能的模拟实现(C++)
开发语言·c++
小熊科研路(同名GZH)24 分钟前
【Matlab高端绘图SCI绘图模板】第05期 绘制高阶折线图
开发语言·matlab·信息可视化
&白帝&28 分钟前
JAVA JDK7时间相关类
java·开发语言·python
geovindu31 分钟前
Qt Designer and Python: Build Your GUI
开发语言·qt
Xiao Xiangζั͡ޓއއ33 分钟前
程序诗篇里的灵动笔触:指针绘就数据的梦幻蓝图<1>
c语言·开发语言·程序人生·学习方法·改行学it
狄加山67538 分钟前
系统编程(线程互斥)
java·开发语言
Hunter_pcx1 小时前
[C++技能提升]插件模式
开发语言·c++
杰九1 小时前
【全栈】SprintBoot+vue3迷你商城(10)
开发语言·前端·javascript·vue.js·spring boot
左手の明天1 小时前
【C/C++】C++中使用vector存储并遍历数据
c语言·开发语言·c++
关关钧1 小时前
【R语言】函数
开发语言·r语言