C++函数对象-运算符函数对象 - 逻辑运算 - 实现 x y 的函数对象 (std::logical_and)

任何定义了函数调用操作符的对象都是函数对象。C++ 支持创建、操作新的函数对象,同时也提供了许多内置的函数对象。

运算符函数对象

C++ 针对常用的算术和逻辑运算定义了很多函数对象:

逻辑运算

实现 x && y 的函数对象 

std::logical_and

template< class T >
struct logical_and;

(C++14 前)

template< class T = void >
struct logical_and;

(C++14 起)

进行逻辑与(逻辑合取)的函数对象。等效地调用类型 T 上的 operator&& 。

特化

标准库提供 std::logical_and 在不指定 T 时的特化,它使得参数类型和返回类型留待推导。

logical_and<void>

实现 x && y 并推导参数和返回类型的函数对象
(类模板特化)
(C++14 起)

成员类型

类型定义
result_type(C++17 中弃用)bool
first_argument_type(C++17 中弃用)T
second_argument_type(C++17 中弃用)T
(C++20 前)

成员函数

operator()

返回二个参数的逻辑与
(公开成员函数)

std::logical_and::operator()

bool operator()( const T& lhs, const T& rhs ) const;

(C++14 前)

constexpr bool operator()( const T& lhs, const T& rhs ) const;

(C++14 起)

返回 lhsrhs 的逻辑与。

参数

lhs, rhs-要计算其逻辑与的值

返回值

lhs && rhs 的结果。

异常

(无)

可能的实现

constexpr bool operator()(const T &lhs, const T &rhs) const 
{return lhs && rhs;
}

调用示例

#include <iostream>
#include <functional>struct Cell
{int x;int y;Cell() = default;Cell(int a, int b): x(a), y(b) {}Cell(const Cell &cell){x = cell.x;y = cell.y;}Cell &operator+(const Cell &cell){x += cell.x;y += cell.y;return *this;}Cell &operator+=(const Cell &cell){x += cell.x;y += cell.y;return *this;}Cell &operator*=(int n){x *= n;y *= n;return *this;}Cell &operator++(){x += 1;y += 1;return *this;}friend Cell operator +(const Cell &cell1, const Cell &cell2){Cell cell = cell1;cell += cell2;return cell;}friend Cell operator *(const Cell &cell1, const Cell &cell2){Cell cell = {cell1.x * cell2.x, cell1.y * cell2.y};return cell;}friend Cell operator /(const Cell &cell1, const Cell &cell2){Cell cell = {cell1.x / cell2.x, cell1.y / cell2.y};return cell;}friend Cell operator %(const Cell &cell1, const Cell &cell2){Cell cell = {cell1.x % cell2.x, cell1.y % cell2.y};return cell;}friend bool operator ==(const Cell &cell1, const Cell &cell2){return cell1.x == cell2.x && cell1.y == cell2.y;}friend bool operator !=(const Cell &cell1, const Cell &cell2){return cell1.x != cell2.x && cell1.y != cell2.y;}friend bool operator <(const Cell &cell1, const Cell &cell2){if (cell1.x == cell2.x){return cell1.y < cell2.y;}else{return cell1.x < cell2.x;}}friend bool operator >(const Cell &cell1, const Cell &cell2){if (cell1.x == cell2.x){return cell1.y > cell2.y;}else{return cell1.x > cell2.x;}}friend bool operator &&(const Cell &cell1, const Cell &cell2){return cell1.x && cell2.x && cell1.y && cell2.y;}friend bool operator ||(const Cell &cell1, const Cell &cell2){return cell1.x || cell2.x || cell1.y || cell2.y;}friend bool operator !(const Cell &cell){return !(cell.x && cell.x);}
};std::ostream &operator<<(std::ostream &os, const Cell &cell)
{os << "{" << cell.x << "," << cell.y << "}";return os;
}int main()
{std::cout << std::boolalpha;int *ptr = nullptr;std::cout << "std::logical_and<int*>()(ptr, nullptr):      "<< std::logical_and<int*>()(ptr, nullptr) << std::endl;std::cout << "std::logical_and<char>()(50, 2):             "<< std::logical_and<char>()(50, 2) << std::endl;std::cout << "std::logical_and<char>()('a', 97):           "<< std::logical_and<char>()('a', 97) << std::endl;std::cout << "std::logical_and<int>()(1023, 1024):         "<< std::logical_and<int>()(1023, 1024) << std::endl;std::cout << "std::logical_and<long>()(1023, 1024):        "<< std::logical_and<long>()(1023, 1024) << std::endl;std::cout << "std::logical_and<long long>()(1023, 1024):   "<< std::logical_and<long long>()(1023, 1024) << std::endl;std::cout << "std::logical_and<uint8_t>()(1023, 1024):     "<< std::logical_and<uint8_t>()(8, 32) << std::endl;std::cout << "std::logical_and<uint16_t>()(123, 456):      "<< std::logical_and<uint16_t>()(123, 456) << std::endl;std::cout << "std::logical_and<uint32_t>()(101, 202):      "<< std::logical_and<uint32_t>()(101, 202) << std::endl;std::cout << "std::logical_and<uint64_t>()(10230, 10240):  "<< std::logical_and<uint64_t>()(10230, 10240) << std::endl;std::cout << "std::logical_and<int8_t>()(1023, 1024):      "<< std::logical_and<int8_t>()(8, 32) << std::endl;std::cout << "std::logical_and<int16_t>()(123, 456):       "<< std::logical_and<int16_t>()(123, 456) << std::endl;std::cout << "std::logical_and<int32_t>()(101, 202):       "<< std::logical_and<int32_t>()(101, 202) << std::endl;std::cout << "std::logical_and<int64_t>()(10230, 10240):   "<< std::logical_and<int64_t>()(10230, 10240) << std::endl;std::cout << "std::logical_and<double>()(3.14, 3.14):      "<< std::logical_and<double>()(3.14, 3.14) << std::endl;std::cout << "std::logical_and<float>()(3.14, 3.14):       "<< std::logical_and<float>()(3.14, 3.14) << std::endl;std::cout << "std::logical_and<float>()(3, 3):             "<< std::logical_and<float>()(3, 3) << std::endl;std::cout << "std::logical_and<float>()(3.56, 3.14):       "<< std::logical_and<float>()(3.56, 3.14) << std::endl;std::cout << "std::logical_and<int>()(3.14, 3.14):         "<< std::logical_and<int>()(3.34, 3.34) << std::endl;std::cout << "std::logical_and<Cell>()(Cell{101, 101}, Cell{202, 202}):       "<< std::logical_and<Cell>()(Cell{101, 101}, Cell{202, 202}) << std::endl;//编译失败
//    std::cout << "std::logical_and<std::string>()(\"I am a \", \"handsome programmer\"):"
//              << std::logical_and<std::string>()("I am a ", "handsome programmer") << std::endl;return 0;
}

输出

std::logical_and<int*>()(ptr, nullptr):      false
std::logical_and<char>()(50, 2):             true
std::logical_and<char>()('a', 97):           true
std::logical_and<int>()(1023, 1024):         true
std::logical_and<long>()(1023, 1024):        true
std::logical_and<long long>()(1023, 1024):   true
std::logical_and<uint8_t>()(1023, 1024):     true
std::logical_and<uint16_t>()(123, 456):      true
std::logical_and<uint32_t>()(101, 202):      true
std::logical_and<uint64_t>()(10230, 10240):  true
std::logical_and<int8_t>()(1023, 1024):      true
std::logical_and<int16_t>()(123, 456):       true
std::logical_and<int32_t>()(101, 202):       true
std::logical_and<int64_t>()(10230, 10240):   true
std::logical_and<double>()(3.14, 3.14):      true
std::logical_and<float>()(3.14, 3.14):       true
std::logical_and<float>()(3, 3):             true
std::logical_and<float>()(3.56, 3.14):       true
std::logical_and<int>()(3.14, 3.14):         true
std::logical_and<Cell>()(Cell{101, 101}, Cell{202, 202}):       true

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/677308.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

关于基因结构注释,我的一些折腾和思考

我在2018年,写过一篇《如何对基因组序列进行注释》,简书上有4万多人阅读,CSDN上有8万多人阅读,说明确实有不少人有相关的需求。我自己也琢磨了一段时间,刚好过年回家,简单的梳理一下。 最初的时候,我的思路就是EvidenceModeler(后面简称EVM)的思路,训练不同从头预测…

微服务学习 | Spring Cloud 中使用 Sentinel 实现服务限流

前些天发现了一个巨牛的人工智能学习网站&#xff0c;通俗易懂&#xff0c;风趣幽默&#xff0c;忍不住分享一下给大家。点击跳转到网站https://www.captainbed.cn/kitie。 目录 前言 通过代码实现限流 定义资源 通过代码定义资源 通过注解方式定义资源 定义限流规则 通过…

nginx 配置404 页面

自己定义404 页面&#xff0c;通过 nginx 配置一下&#xff0c;重新定向 1. http 里面添加配置 proxy_intercept_errors on; fastcgi_intercept_errors on; 2. server 中添加配置 error_page 500 502 503 504 /404.html;error_page 404 /404.html;location /404.html…

cximage在vs2013下使用方法

1.下载源码 Cximage源码官网 CxImage download | SourceForge.net 下载最新版本 702版本 Download cximage702_full.7z (CxImage) 2.编译 vs2013打开CxImageFull_vc10.sln 这个源码版本是vc10的版本&#xff0c;所以vs2013会自动更新项目 因为cximage需要在后面的项目中使…

Nginx实战:2-日志配置

目录 前言 一、访问日志 1.字段配置 2.日志配置 3.默认配置 二、错误日志 前言 Nginx是一款高性能的HTTP和反向代理服务器&#xff0c;同时也是一个IMAP/POP3/SMTP服务器。在Nginx的日常使用中&#xff0c;日志记录是非常重要的一部分&#xff0c;它可以帮助我们监控服务…

2月7日《CS2》终于放大招,玩家激情再次被点燃

2024.2.7号&#xff0c;也就是昨天&#xff0c;V社终于放了大招&#xff0c;对CS2做了高达5个多G的大更新&#xff0c;这次更新内容还是比较多的&#xff0c;说几个比较有意思的点吧。 1、新武器箱&#xff1a;千瓦武器箱&#xff01; 全新的武器箱千瓦箱&#xff0c;能开出全…

java 回答问题

1. How do you create a variable with the numeric value 5? int x 5; 2. The value of a string variable can be surrounded by single quotes. False 3. Which method can be used to return a string in upper case letters? toUpperCase()

AutoSAR(基础入门篇)5.4-Autosar_汽车ECU项目的开发流程

目录 前言 一、团队介绍 二、AutoSAR开发流程 前言 项目的基础入门篇终于是要讲完了(后面可能还有一些补充内容)。大家耐着性子能看到这里也是真心不容易,AutoSAR很多内容都是理论上的东 西,还需要多加实践。所以如果你能认真看完前面的内容,并加以理解,那么我相信再看…

Netty应用(一) 之 NIO概念 基本编程

目录 第一章 概念引入 1.分布式概念引入 第二章 Netty基础 - NIO 1.引言 1.1 什么是Netty&#xff1f; 1.2 为什么要学习Netty&#xff1f; 2.NIO编程 2.1 传统网络通信中开发方式及问题&#xff08;BIO&#xff09; 2.1.1 多线程版网络编程 2.1.2 线程池版的网络编程…

搭建yum仓库服务器

安装 1.安装linux 1.1安装依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 1.2下载 cd /opt/nginx wget http://nginx.org/download/nginx-1.25.3.tar.gz 1.3解压 tar -xvf nginx-1.25.3.tar.gz 1.4配置 cd nginx-1.25.3 ./configure --pre…

FTP 文件传送协议

目录 1 文件传送协议 FTP 1.1 FTP 的基本工作原理 FTP 特点 主进程的工作步骤 两个连接 两个不同的端口号 NFS 采用另一种思路 1.2 简单文件传送协议 TFTP TFTP 的主要特点 TFTP 的工作&#xff08;很像停止等待协议&#xff09; 1 文件传送协议 FTP 文件传送协议 …

Redisson分布式锁 原理 + 运用 记录

Redisson 分布式锁 简单入门 pom <dependency><groupId>org.redisson</groupId><artifactId>redisson</artifactId><version>3.13.6</version></dependency>配置类 package com.hmdp.config;import org.redisson.Redisson;…

NLP_引入注意力机制

文章目录 点积注意力创建两个张量x1和x2计算张量点积&#xff0c; 得到原始权重对原始权重进行归一化求出注意力分布的加权和 缩放点积注意力编码器-解码器注意力定义Attention类重构Decoder类重构Seq2Seq类可视化注意力权重 注意力机制中的 Q、K、V自注意力多头自注意力注意力…

CSS 2D转换 3D动画 3D转换

目录 2D转换(transform): 移动translate: 旋转rotate: 缩放scale&#xff1a; CSS3动画&#xff08;transform&#xff09;&#xff1a; 动画常用的属性&#xff1a; 将长图片利用盒子实现动画的效果&#xff1a; 3D转换&#xff1a; 透视perspective&#xff1a; 旋转r…

动态内存经典笔试题分析

1.代码1 void GetMemory(char *p) { p (char *)malloc(100); } void Test(void) { char *str NULL; GetMemory(str); strcpy(str, "hello world"); printf(str); } int main&#xff08;&#xff09; { Test&#xff08;&#xff09;&#xff1b; return 0&#x…

WWW 2024 | 时间序列(Time Series)和时空数据(Spatial-Temporal)论文总结

WWW 2024已经放榜&#xff0c;本次会议共提交了2008篇文章&#xff0c;research tracks共录用约400多篇论文&#xff0c;录用率为20.2%。本次会议将于2024年5月13日-17日在新加坡举办。 本文总结了WWW 2024有关时间序列&#xff08;Time Series&#xff09;和时空数据&#xf…

使用rem单位制,实现页面适应性窗口元素

目录 REM单位&#xff1a; 媒体查询&#xff1a; 引入资源&#xff1a; REM适配方案&#xff1a; 适配方案一&#xff1a; rem媒体查询less技术 适配方案二&#xff1a; REM单位&#xff1a; rem(rootem)是一个相对单位&#xff0c;类似于em,em是父元素字体大小。 不同的…

elasticsearch下载及可视化工具下载使用

elasticsearch下载及配置、启动 一、下载 Download Elasticsearch | Elastic 二、启动 双击bat即可。 出现如下说明启动成功&#xff1a; 访问测试&#xff1a; 三、注意 &#xff08;1&#xff09;因为es启动默认端口是&#xff1a;9200,所以需要检查此端口是否被占用。…

Linux系统中HTTP代理的常见问题及解决方案

亲爱的Linux用户们&#xff0c;是不是有时候觉得HTTP代理就像是一个魔法盒子&#xff0c;让你在数字世界中自由穿梭&#xff1f;但是&#xff0c;就像所有的魔法物品一样&#xff0c;它也会偶尔出点小状况。今天&#xff0c;我们就来一起探讨一下Linux系统中HTTP代理的常见问题…

DC-9靶机渗透详细流程

信息收集&#xff1a; 1.存活扫描&#xff1a; arp-scan -I eth0 -l 发现靶机ip&#xff1a;192.168.10.132 └─# arp-scan -I eth0 -l 192.168.10.1 00:50:56:c0:00:08 (Unknown) 192.168.10.2 00:50:56:e5:b1:08 (Unknown) 192.168.10.132 //靶机 00:0c…