过年之无用知识研究:恢复std::pair中被delete了的operator=,会如何

把pair的源码拷贝出来,起个新名字叫MyPair

template<class _Ty1,class _Ty2>struct MyPair
{	// store a MyPair of valuesusing first_type = _Ty1;using second_type = _Ty2;//
// 本文主要是改造这一行
//MyPair& operator=(const volatile MyPair&) = delete;template<class _Uty1 = _Ty1,class _Uty2 = _Ty2,enable_if_t<conjunction_v<is_default_constructible<_Uty1>,is_default_constructible<_Uty2>,_Is_implicitly_default_constructible<_Uty1>,_Is_implicitly_default_constructible<_Uty2>>, int> = 0>constexpr MyPair()_NOEXCEPT_COND(is_nothrow_default_constructible_v<_Uty1>&& is_nothrow_default_constructible_v<_Uty2>)	// strengthened: first(), second(){}template<class _Uty1 = _Ty1,class _Uty2 = _Ty2,enable_if_t<conjunction_v<is_default_constructible<_Uty1>,is_default_constructible<_Uty2>,negation<conjunction<_Is_implicitly_default_constructible<_Uty1>,_Is_implicitly_default_constructible<_Uty2>>>>, int> = 0>constexpr explicit MyPair()_NOEXCEPT_COND(is_nothrow_default_constructible_v<_Uty1>&& is_nothrow_default_constructible_v<_Uty2>)	// strengthened: first(), second(){}template<class _Uty1 = _Ty1,class _Uty2 = _Ty2,enable_if_t<conjunction_v<is_copy_constructible<_Uty1>,is_copy_constructible<_Uty2>,is_convertible<const _Uty1&, _Uty1>,is_convertible<const _Uty2&, _Uty2>>, int> = 0>constexpr MyPair(const _Ty1& _Val1, const _Ty2& _Val2)_NOEXCEPT_COND(is_nothrow_copy_constructible_v<_Uty1>&& is_nothrow_copy_constructible_v<_Uty2>)	// strengthened: first(_Val1), second(_Val2){}template<class _Uty1 = _Ty1,class _Uty2 = _Ty2,enable_if_t<conjunction_v<is_copy_constructible<_Uty1>,is_copy_constructible<_Uty2>,negation<conjunction<is_convertible<const _Uty1&, _Uty1>,is_convertible<const _Uty2&, _Uty2>>>>, int> = 0>constexpr explicit MyPair(const _Ty1& _Val1, const _Ty2& _Val2)_NOEXCEPT_COND(is_nothrow_copy_constructible_v<_Uty1>&& is_nothrow_copy_constructible_v<_Uty2>)	// strengthened: first(_Val1), second(_Val2){}template<class _Other1,class _Other2,enable_if_t<conjunction_v<is_constructible<_Ty1, _Other1>,is_constructible<_Ty2, _Other2>,is_convertible<_Other1, _Ty1>,is_convertible<_Other2, _Ty2>>, int> = 0>constexpr MyPair(_Other1&& _Val1, _Other2&& _Val2)_NOEXCEPT_COND(is_nothrow_constructible_v<_Ty1, _Other1>&& is_nothrow_constructible_v<_Ty2, _Other2>)	// strengthened: first(_STD forward<_Other1>(_Val1)),second(_STD forward<_Other2>(_Val2)){}template<class _Other1,class _Other2,enable_if_t<conjunction_v<is_constructible<_Ty1, _Other1>,is_constructible<_Ty2, _Other2>,negation<conjunction<is_convertible<_Other1, _Ty1>,is_convertible<_Other2, _Ty2>>>>, int> = 0>constexpr explicit MyPair(_Other1&& _Val1, _Other2&& _Val2)_NOEXCEPT_COND(is_nothrow_constructible_v<_Ty1, _Other1>&& is_nothrow_constructible_v<_Ty2, _Other2>)	// strengthened: first(_STD forward<_Other1>(_Val1)),second(_STD forward<_Other2>(_Val2)){}MyPair(const MyPair&) = default;MyPair(MyPair&&) = default;template<class _Other1,class _Other2,enable_if_t<conjunction_v<is_constructible<_Ty1, const _Other1&>,is_constructible<_Ty2, const _Other2&>,is_convertible<const _Other1&, _Ty1>,is_convertible<const _Other2&, _Ty2>>, int> = 0>constexpr MyPair(const MyPair<_Other1, _Other2>& _Right)_NOEXCEPT_COND(is_nothrow_constructible_v<_Ty1, const _Other1&>&& is_nothrow_constructible_v<_Ty2, const _Other2&>)	// strengthened: first(_Right.first), second(_Right.second){}template<class _Other1,class _Other2,enable_if_t<conjunction_v<is_constructible<_Ty1, const _Other1&>,is_constructible<_Ty2, const _Other2&>,negation<conjunction<is_convertible<const _Other1&, _Ty1>,is_convertible<const _Other2&, _Ty2>>>>, int> = 0>constexpr explicit MyPair(const MyPair<_Other1, _Other2>& _Right)_NOEXCEPT_COND(is_nothrow_constructible_v<_Ty1, const _Other1&>&& is_nothrow_constructible_v<_Ty2, const _Other2&>)	// strengthened: first(_Right.first), second(_Right.second){}template<class _Other1,class _Other2,enable_if_t<conjunction_v<is_constructible<_Ty1, _Other1>,is_constructible<_Ty2, _Other2>,is_convertible<_Other1, _Ty1>,is_convertible<_Other2, _Ty2>>, int> = 0>constexpr MyPair(MyPair<_Other1, _Other2>&& _Right)_NOEXCEPT_COND(is_nothrow_constructible_v<_Ty1, _Other1>&& is_nothrow_constructible_v<_Ty2, _Other2>)	// strengthened: first(_STD forward<_Other1>(_Right.first)),second(_STD forward<_Other2>(_Right.second)){}template<class _Other1,class _Other2,enable_if_t<conjunction_v<is_constructible<_Ty1, _Other1>,is_constructible<_Ty2, _Other2>,negation<conjunction<is_convertible<_Other1, _Ty1>,is_convertible<_Other2, _Ty2>>>>, int> = 0>constexpr explicit MyPair(MyPair<_Other1, _Other2>&& _Right)_NOEXCEPT_COND(is_nothrow_constructible_v<_Ty1, _Other1>&& is_nothrow_constructible_v<_Ty2, _Other2>)	// strengthened: first(_STD forward<_Other1>(_Right.first)),second(_STD forward<_Other2>(_Right.second)){}template<class _Tuple1,class _Tuple2,size_t... _Indexes1,size_t... _Indexes2> inlineMyPair(_Tuple1& _Val1,_Tuple2& _Val2,index_sequence<_Indexes1...>,index_sequence<_Indexes2...>);template<class... _Types1,class... _Types2> inlineMyPair(piecewise_construct_t,tuple<_Types1...> _Val1,tuple<_Types2...> _Val2);template<class _Other1 = _Ty1,class _Other2 = _Ty2,enable_if_t<conjunction_v<is_assignable<_Ty1&, const _Other1&>,is_assignable<_Ty2&, const _Other2&>>, int> = 0>MyPair& operator=(const MyPair<_Other1, _Other2>& _Right)_NOEXCEPT_COND(is_nothrow_assignable_v<_Ty1&, const _Other1&>&& is_nothrow_assignable_v<_Ty2&, const _Other2&>)	// strengthened{first = _Right.first;second = _Right.second;return (*this);}template<class _Other1 = _Ty1,class _Other2 = _Ty2,enable_if_t<conjunction_v<is_assignable<_Ty1&, _Other1>,is_assignable<_Ty2&, _Other2>>, int> = 0>MyPair& operator=(MyPair<_Other1, _Other2>&& _Right)_NOEXCEPT_COND(is_nothrow_assignable_v<_Ty1&, _Other1>&& is_nothrow_assignable_v<_Ty2&, _Other2>)	// strengthened{first = _STD forward<_Other1>(_Right.first);second = _STD forward<_Other2>(_Right.second);return (*this);}void swap(MyPair& _Right)_NOEXCEPT_COND(_Is_nothrow_swappable<_Ty1>::value&& _Is_nothrow_swappable<_Ty2>::value){if (this != _STD addressof(_Right)){	// different, worth swapping_Swap_adl(first, _Right.first);_Swap_adl(second, _Right.second);}}_Ty1 first;		// the first stored value_Ty2 second;	// the second stored value
};
测试代码:
MyPair<const int, int> t0;
MyPair<int, int> t1;
t0 = t1;编译错误:
error C2679: 二进制“=”: 没有找到接受“MyPair<int,int>”类型的右操作数的运算符(或没有可接受的转换)
note: 可能是“MyPair<const int,int> &MyPair<const int,int>::operator =(volatile const MyPair<const int,int> &)”
note: 尝试匹配参数列表“(MyPair<const int,int>, MyPair<int,int>)”时
尝试把delete的MyPair的operator=给个实现呢:
把MyPair& operator=(const volatile MyPair&)=delete;
改为:
MyPair& operator=(const volatile MyPair&)
{return (*this);
}编译错误为:
error C2679: 二进制“=”: 没有找到接受“MyPair<int,int>”类型的右操作数的运算符(或没有可接受的转换)
note: 可能是“MyPair<const int,int> &MyPair<const int,int>::operator =(volatile const MyPair<const int,int> &)”
note: 尝试匹配参数列表“(MyPair<const int,int>, MyPair<int,int>)”时因为左边的MyPair实例化的是<const int,int>,而
MyPair& operator=(const volatile MyPair&)里括号里的MyPair里实例化的是<int,int>,
按照函数的写法,这两者应该一样。但此时不一样,所以编译错误。
下面编译成功。也就是把operator=采用模板函数,括号里的形参进行单独推导把MyPair& operator=(const volatile MyPair&) = delete;
改为:template<typename T, typename U>MyPair& operator=(const volatile MyPair<T, U>& _Right){//first = _Right.first;//second = _Right.second;return (*this);}
template<typename T, typename U>MyPair& operator=(const volatile MyPair<T, U>& _Right){
//强行把this的first的const给去掉,就可以被参数给赋值了using decayType = std::decay_t<_Ty1>;decayType& _first = const_cast<decayType&>(first);_first = _Right.first;second = _Right.second;return (*this);}测试代码:
编译通过,t0的内容就是(3,4),被成功赋值MyPair<const int, int> t0{1,2};
MyPair<int, int> t1{ 3,4 };
t0 = t1;
return 1; 

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

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

相关文章

linux通过deb包安装(命令模式)

通过下载deb包安装Chrome浏览器 - lyy19s Wikihttps://lyy1119.github.io/%E8%BD%AF%E4%BB%B6%E4%BD%BF%E7%94%A8/Linux/InstallChrome/

C基础寒假练习(4)

输入带空格的字符串&#xff0c;求单词个数、 #include <stdio.h> // 计算字符串长度的函数 size_t my_strlen(const char *str) {size_t len 0;while (str[len] ! \0) {len;}return len; }int main() {char str[100];printf("请输入一个字符串: ");fgets(…

Android View 的事件分发机制解析

前言&#xff1a;当一个事件发生时&#xff08;例如触摸屏幕&#xff09;&#xff0c;事件会从根View&#xff08;通常是Activity的布局中的最顶层View&#xff09;开始&#xff0c;通过一个特定的路径传递到具体的View&#xff0c;这个过程涉及到三个关键的阶段&#xff1a;事…

WPS数据分析000005

目录 一、数据录入技巧 二、一维表 三、填充柄 向下自动填充 自动填充选项 日期填充 星期自定义 自定义序列 1-10000序列 四、智能填充 五、数据有效性 出错警告 输入信息 下拉列表 六、记录单 七、导入数据 ​编辑 八、查找录入 会员功能 Xlookup函数 VL…

【Spring】Spring启示录

目录 前言 一、示例程序 二、OCP开闭原则 三、依赖倒置原则DIP 四、控制反转IOC 总结 前言 在软件开发的世界里&#xff0c;随着项目的增长和需求的变化&#xff0c;如何保持代码的灵活性、可维护性和扩展性成为了每个开发者必须面对的问题。传统的面向过程或基于类的设计…

爬虫基础之爬取某基金网站+数据分析

声明: 本案例仅供学习参考使用&#xff0c;任何不法的活动均与本作者无关 网站:天天基金网(1234567.com.cn) --首批独立基金销售机构-- 东方财富网旗下基金平台! 本案例所需要的模块: 1.requests 2.re(内置) 3.pandas 4.pyecharts 其他均需要 pip install 模块名 爬取步骤: …

set集合

set集合 Set系列集合&#xff1a; 无序&#xff1a;存取顺序不一致 不重复&#xff1a;可以去除重复 无索引&#xff1a;没有带索引的方法&#xff0c;所以不能使用普通for循环遍历&#xff0c;也不能通过索引来获取元素 可以看出set是无序的存和打印的顺序不一样 Set接中的…

借DeepSeek-R1东风,开启创业新机遇

DeepSeek-R1的崛起 DeepSeek-R1的推出引发了广泛关注&#xff0c;在AI领域引起了一阵旋风。作为新一代的智能模型&#xff0c;它在多项任务中表现出了卓越的能力。普通人可以借助这个强大的工具&#xff0c;开启属于自己的创业之路&#xff0c;抓住时代带来的机遇。 内容创作…

项目集成Nacos

文章目录 1.环境搭建1.创建模块 sunrays-common-cloud-nacos-starter2.目录结构3.pom.xml4.自动配置1.NacosAutoConfiguration.java2.spring.factories 5.引入cloud模块通用依赖 2.测试1.创建模块 sunrays-common-cloud-nacos-starter-demo2.目录结构3.pom.xml4.application.ym…

系统安全及应用

一&#xff1a;账号安全控制 1.1 系统账号清理 1.1.1 将非登陆用户的Shell 设置为 /sbin/nologin (设置为这个解释器&#xff0c;禁止用户登陆&#xff09; [rootlocalhost ~]# usermod -s /sbin/nologin zhangsan #将用户zhangsan 的登录解释器 设置为 /sbin/n…

从源码深入理解One-API框架:适配器模式实现LLM接口对接

1. 概述 one-api 是一个开源的 API 框架&#xff0c;基于go语言开发&#xff0c;旨在提供统一的接口调用封装&#xff0c;支持多种 AI 服务平台的集成。通过 Gin 和 GORM 等框架&#xff0c;框架简化了多种 API 服务的调用流程。通过适配器模式实现了与多种 大模型API 服务的集…

[权限提升] 操作系统权限介绍

关注这个专栏的其他相关笔记&#xff1a;[内网安全] 内网渗透 - 学习手册-CSDN博客 权限提升简称提权&#xff0c;顾名思义就是提升自己在目标系统中的权限。现在的操作系统都是多用户操作系统&#xff0c;用户之间都有权限控制&#xff0c;我们通过 Web 漏洞拿到的 Web 进程的…

多模态论文笔记——ViViT

大家好&#xff0c;这里是好评笔记&#xff0c;公主号&#xff1a;Goodnote&#xff0c;专栏文章私信限时Free。本文详细解读多模态论文《ViViT: A Video Vision Transformer》&#xff0c;2021由google 提出用于视频处理的视觉 Transformer 模型&#xff0c;在视频多模态领域有…

【深度之眼cs231n第七期】笔记(三十一)

目录 强化学习什么是强化学习&#xff1f;马尔可夫决策过程&#xff08;MDP&#xff09;Q-learning策略梯度SOTA深度强化学习 还剩一点小尾巴&#xff0c;还是把它写完吧。&#xff08;距离我写下前面那行字又过了好几个月了【咸鱼本鱼】&#xff09;&#xff08;汗颜&#xff…

[免费]基于Python的Django博客系统【论文+源码+SQL脚本】

大家好&#xff0c;我是java1234_小锋老师&#xff0c;看到一个不错的基于Python的Django博客系统&#xff0c;分享下哈。 项目视频演示 【免费】基于Python的Django博客系统 Python毕业设计_哔哩哔哩_bilibili 项目介绍 随着互联网技术的飞速发展&#xff0c;信息的传播与…

【Docker】Docker入门了解

文章目录 Docker 的核心概念Docker 常用命令示例&#xff1a;构建一个简单的 C 应用容器1. 创建 C 应用2. 创建 Dockerfile3. 构建镜像4. 运行容器 Docker 优势学习 Docker 的下一步 **一、Docker 是什么&#xff1f;****为什么 C 开发者需要 Docker&#xff1f;** **二、核心概…

如何跨互联网adb连接到远程手机-蓝牙电话集中维护

如何跨互联网adb连接到远程手机-蓝牙电话集中维护 --ADB连接专题 一、前言 随便找一个手机&#xff0c;安装一个App并简单设置一下&#xff0c;就可以跨互联网的ADB连接到这个手机&#xff0c;从而远程操控这个手机做各种操作。你敢相信吗&#xff1f;而这正是本篇想要描述的…

基于java线程池和EasyExcel实现数据异步导入

基于java线程池和EasyExcel实现数据异步导入 2.代码实现 2.1 controller层 PostMapping("import")public void importExcel(MultipartFile file) throws IOException {importService.importExcelAsync(file);}2.2 service层 Resource private SalariesListener sa…

linux asio网络编程理论及实现

最近在B站看了恋恋风辰大佬的asio网络编程&#xff0c;质量非常高。在本章中将对ASIO异步网络编程的整体及一些实现细节进行完整的梳理&#xff0c;用于复习与分享。大佬的博客&#xff1a;恋恋风辰官方博客 Preactor/Reactor模式 在网络编程中&#xff0c;通常根据事件处理的触…

Python爬虫学习第三弹 —— Xpath 页面解析 实现无广百·度

早上好啊&#xff0c;大佬们。上回使用 Beautiful Soup 进行页面解析的内容是不是已经理解得十分透彻了~ 这回我们再来尝试使用另外一种页面解析&#xff0c;来重构上一期里写的那些代码。 讲完Xpath之后&#xff0c;小白兔会带大家解决上期里百度搜索的代码编写&#xff0c;保…