C++函数对象-运算符函数对象 - 位运算 - 实现 x ^ y 的函数对象 (std::bit_xor)

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

运算符函数对象

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

位运算

实现 x ^ y 的函数对象

std::bit_xor

template< class T >
struct bit_xor;

(C++14 前)

template< class T = void >
struct bit_xor;

(C++14 起)

进行逐位异或的函数对象。等效地调用类型 T 上的 operator^ 。

特化

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

bit_xor<void>

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

成员类型

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

成员函数

operator()

返回二个参数逐位异或的结果
(公开成员函数)

 

std::bit_xor::operator()

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

(C++14 前)

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

(C++14 起)

返回 lhsrhs 逐位异或的结果。

参数

lhs, rhs-要计算逐位异或的值

返回值

lhs ^ rhs 的结果。

异常

(无)

可能的实现

constexpr T 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);}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;}
};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::bit_xor<int*>()(ptr, nullptr):      "
//              << std::bit_xor<int*>()(ptr, nullptr) << std::endl;std::cout << "std::bit_xor<char>()(50, 2):             "<< std::bit_xor<char>()(50, 2) << std::endl;std::cout << "std::bit_xor<char>()('a', 97):           "<< std::bit_xor<char>()('a', 97) << std::endl;std::cout << "std::bit_xor<int>()(1023, 1024):         "<< std::bit_xor<int>()(1023, 1024) << std::endl;std::cout << "std::bit_xor<long>()(1023, 1024):        "<< std::bit_xor<long>()(1023, 1024) << std::endl;std::cout << "std::bit_xor<long long>()(1023, 1024):   "<< std::bit_xor<long long>()(1023, 1024) << std::endl;std::cout << "std::bit_xor<uint8_t>()(1023, 1024):     "<< std::bit_xor<uint8_t>()(8, 32) << std::endl;std::cout << "std::bit_xor<uint16_t>()(123, 456):      "<< std::bit_xor<uint16_t>()(123, 456) << std::endl;std::cout << "std::bit_xor<uint32_t>()(101, 202):      "<< std::bit_xor<uint32_t>()(101, 202) << std::endl;std::cout << "std::bit_xor<uint64_t>()(10230, 10240):  "<< std::bit_xor<uint64_t>()(10230, 10240) << std::endl;std::cout << "std::bit_xor<int8_t>()(1023, 1024):      "<< std::bit_xor<int8_t>()(8, 32) << std::endl;std::cout << "std::bit_xor<int16_t>()(123, 456):       "<< std::bit_xor<int16_t>()(123, 456) << std::endl;std::cout << "std::bit_xor<int32_t>()(101, 202):       "<< std::bit_xor<int32_t>()(101, 202) << std::endl;std::cout << "std::bit_xor<int64_t>()(10230, 10240):   "<< std::bit_xor<int64_t>()(10230, 10240) << std::endl;//    std::cout << "std::bit_xor<double>()(3.14, 3.14):      "
//              << std::bit_xor<double>()(3.14, 3.14) << std::endl;
//    std::cout << "std::bit_xor<float>()(3.14, 3.14):       "
//              << std::bit_xor<float>()(3.14, 3.14) << std::endl;
//    std::cout << "std::bit_xor<float>()(3, 3):             "
//              << std::bit_xor<float>()(3, 3) << std::endl;
//    std::cout << "std::bit_xor<float>()(3.56, 3.14):       "
//              << std::bit_xor<float>()(3.56, 3.14) << std::endl;
//    std::cout << "std::bit_xor<int>()(3.14, 3.14):         "
//              << std::bit_xor<int>()(3.34, 3.34) << std::endl;std::cout << "std::bit_xor<Cell>()(Cell{101, 101}, Cell{202, 202}):       "<< std::bit_xor<Cell>()(Cell{101, 101}, Cell{202, 202}) << std::endl;//编译失败
//    std::cout << "std::bit_xor<std::string>()(\"I am a \", \"handsome programmer\"):"
//              << std::bit_xor<std::string>()("I am a ", "handsome programmer") << std::endl;return 0;
}

输出

std::bit_xor<char>()(50, 2):             0
std::bit_xor<char>()('a', 97):
std::bit_xor<int>()(1023, 1024):         2047
std::bit_xor<long>()(1023, 1024):        2047
std::bit_xor<long long>()(1023, 1024):   2047
std::bit_xor<uint8_t>()(1023, 1024):     (
std::bit_xor<uint16_t>()(123, 456):      435
std::bit_xor<uint32_t>()(101, 202):      175
std::bit_xor<uint64_t>()(10230, 10240):  4086
std::bit_xor<int8_t>()(1023, 1024):      (
std::bit_xor<int16_t>()(123, 456):       435
std::bit_xor<int32_t>()(101, 202):       175
std::bit_xor<int64_t>()(10230, 10240):   4086
std::bit_xor<Cell>()(Cell{101, 101}, Cell{202, 202}):       {175,175}

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

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

相关文章

[经验] 欧阳修唐宋八大家之首是谁 #微信#知识分享#学习方法

欧阳修唐宋八大家之首是谁 1、唐宋八大家之首是谁 唐宋八大家是中国文学史上最具代表性的八位大文豪&#xff0c;他们的文学成就在中国文学史上占有重要地位&#xff0c;被誉为文学史上的“巨人”。 唐宋八大家之首&#xff0c;无疑是唐代著名诗人杜甫。他出生在一个贫苦的家…

牛客——IncDec Sequence(差分)

链接&#xff1a;登录—专业IT笔试面试备考平台_牛客网 来源&#xff1a;牛客网 题目描述 给定一个长度为 n(n≤105)(n \leq 10^5 )(n≤105) 的数列a1,a2,…,an{a_1,a_2,…,a_n}a1​,a2​,…,an​&#xff0c;每次可以选择一个区间 [l,r]&#xff0c;使下标在这个区间内的数…

每日一题 力扣107 二叉树的层序遍历Ⅱ

107. 二叉树的层序遍历 II 题目描述&#xff1a; 给你二叉树的根节点 root &#xff0c;返回其节点值 自底向上的层序遍历 。 &#xff08;即按从叶子节点所在层到根节点所在的层&#xff0c;逐层从左向右遍历&#xff09; 示例 1&#xff1a; 输入&#xff1a;root [3,9,20…

如何用 ChatGPT 做项目管理?

ChatGPT 可以通过创建和维护跨团队项目协作计划&#xff0c;让员工更容易理解他们的角色和职责。 这个协作计划里面会包括每个团队或个人要执行的具体任务&#xff0c;每个任务最后期限和任何事情之 间的依赖关系。 该场景对应的关键词库:(24 个) 项目管理、项目协作计划、跨…

操作 Docker 存储卷的常用指令汇总

1. 什么是存储卷&#xff1f; 存储卷就是将宿主机的本地文件系统中存在的某个目录直接与容器内部的文件系统上的某一目录建立绑定关系。使得可以在宿主机和容器内共享数据库内容&#xff0c;让容器直接访问宿主机中的内容&#xff0c;也可以宿主机向容器写入内容&#xff0c;容…

(通信)驻波

驻波是一种物理现象&#xff0c;它发生在频率相同、传输方向相反的两种波&#xff08;不一定是电波&#xff09;沿传输线形成的一种分布状态。 在这种状态下&#xff0c;一个波通常是另一个波的反射波。 在驻波中&#xff0c;波节和波腹的位置始终保持不变&#xff0c;给人一种…

了解Ping、Wget、端口、Netstat和Curl命令

1. 端口 1.1 什么是端口&#xff1f; 端口是一种用于标识不同应用程序或服务的逻辑通道。它是一个数字&#xff0c;取值范围从0到65535。常见的端口有一些已经被标准化&#xff0c;比如HTTP使用的80端口&#xff0c;HTTPS使用的443端口。 1.2 了解端口状态 使用netstat -an…

【深度学习】Pytorch 系列教程(二):PyTorch数据结构:1、Tensor(张量): GPU加速(GPU Acceleration)

文章目录 一、前言二、实验环境三、PyTorch数据结构0、分类1、Tensor&#xff08;张量&#xff09;1. 维度&#xff08;Dimensions&#xff09;2. 数据类型&#xff08;Data Types&#xff09;3. GPU加速&#xff08;GPU Acceleration&#xff09;查看可用gpu张量移动经典语句d…

边缘计算第二版施巍松——第8章边缘计算系统实例

8.1边缘计算系统概述 1.Cloudlet 架构&#xff1a;移动设备-Cloudlet-云 cloudlet也可以像云一样为用户提供服务&#xff0c;Cloudlet离移动设备只有一跳的距离&#xff0c;具有物理距离的临近性&#xff0c;可以保证实时反馈时延低&#xff0c;又可以利用局域网的高带宽优势&…

(五)【Jmeter】使用代理录制HTTP脚本操作步骤及注意事项

前置信息 软件版本Jmeter5.6.3 服务网址备注drupalhttp://192.168.88.88:18080/&#xff08;二&#xff09;【Jmeter】专栏实战项目靶场drupal部署 用户名密码test1test1test2test2 实操记录 1、启动jmeter&#xff0c;操作顺序见下图 2、在视图面板添加如下信息&#x…

Elcomsoft 取证工具包系列:Advanced SQL Password Recovery

天津鸿萌科贸发展有限公司是 Elcomsoft 系列软件的授权代理商。Elcomsoft 取证工具包系列软件提供了一系列强大丰富的密码恢复功能&#xff0c;为取证工作打开一道道畅通的大门&#xff0c;是取证工作者必备的工具。 Advanced SQL Password Recovery 高级 SQL 密码恢复软件 即…

[office] Excel 数据库函数条件区域怎样设置 #笔记#笔记

Excel 数据库函数条件区域怎样设置 以下面的数据表格为例&#xff0c;对于条件区域的设置&#xff0c;有几方面需要注意的内容&#xff0c;下面就一起看看如何对Excel 数据库函数条件区域设置的吧。希望会大家有所帮助 以下面的数据表格为例&#xff0c;对于条件区域的设置&am…

C++ STL:list和vector的比较

底层数据结构 Vector: 底层实现为动态数组&#xff0c;提供了一段连续的内存空间。这种连续存储使得 vector 能够提供快速的随机访问能力。 随机访问&#xff08;通过索引访问元素&#xff09;的时间复杂度为 O(1)。 因为可能涉及内存重新分配和数据移动&#xff0c;所以在尾…

计算机设计大赛 深度学习OCR中文识别 - opencv python

文章目录 0 前言1 课题背景2 实现效果3 文本区域检测网络-CTPN4 文本识别网络-CRNN5 最后 0 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 &#x1f6a9; **基于深度学习OCR中文识别系统 ** 该项目较为新颖&#xff0c;适合作为竞赛课题方向&#xff0c;…

Lag-Llama:第一个时间序列预测的开源基础模型介绍和性能测试

2023年10月&#xff0c;我们发表了一篇关于TimeGPT的文章&#xff0c;TimeGPT是时间序列预测的第一个基础模型之一&#xff0c;具有零样本推理、异常检测和共形预测能力。 虽然TimeGPT是一个专有模型&#xff0c;只能通过API访问。但是它还是引发了对时间序列基础模型的更多研…

Unity如何修改预制体(预制件)?

文章目录 19 复制复制复制&#xff0c;预制体与变体 19 复制复制复制&#xff0c;预制体与变体 【预制件】 预制件作用&#xff1a;方便复用 【预制件】的制作 直接拖拽&#xff0c;从层级面板 -> 项目面板。层级面板中当前图标会变蓝&#xff0c;子物体名字变蓝色。预制件…

[经验] 做完腺样体手术打呼噜很严重怎么办 #媒体#笔记#经验分享

做完腺样体手术打呼噜很严重怎么办 1、打呼噜很严重怎么办 打呼噜是一种常见的睡眠障碍&#xff0c;不仅让睡眠质量变得很糟糕&#xff0c;也会影响室友或家人的睡眠质量。幸运的是&#xff0c;有许多方法可以减少打呼噜的发生率&#xff0c;从而让睡眠变得更好。 保持良好的…

已解决ModuleNotFoundError: No module named ‘tensorflow‘异常的正确解决方法,亲测有效!!!

已解决ModuleNotFoundError: No module named tensorflow异常的正确解决方法&#xff0c;亲测有效&#xff01;&#xff01;&#xff01; 文章目录 问题分析 报错原因 解决思路 解决方法 总结 在深度学习和机器学习项目中&#xff0c;TensorFlow是一个极为常用和功能强大…

从零开启 JDBC 编程

前言 最近在总结MyBatis的时候了解到&#xff0c;MyBatis的底层使用的就是JDBC&#xff0c;仔细想想JDBC是我很久之前学过的东西了&#xff0c;现在难免有些遗忘&#xff0c;所以打算重新拿出来写一下&#xff0c;毕竟理解了JDBC的工作原理和原始API的使用&#xff0c;对理解框…

具有集中目录服务器的 P2P 工作方式

P2P 工作方式概述 在 P2P 工作方式下&#xff0c;所有的音频/视频文件都是在普通的互联网用户之间传输。 具有集中目录服务器的 P2P 工作方式 Napster 最早使用 P2P 技术&#xff0c;提供免费下载 MP3 音乐。 Napster 将所有音乐文件的索引信息都集中存放在 Napster 目录服务…