c++11 标准模板(STL)(std::tuple)(二)

 

定义于头文件 <tuple>

template< class... Types >
class tuple;

(C++11 起)

类模板 std::tuple 是固定大小的异类值汇集。它是 std::pair 的推广。

若 (std::is_trivially_destructible_v<Types> && ...) 为 true ,则 tuple 的析构函数是平凡的。

(C++17 起)

模板形参

Types...-tuple 所存储的元素的类型。支持空列表。

 

构造函数

std::tuple<Types...>::tuple

constexpr tuple();

(1)(C++11 起)
(条件性 explicit)

tuple( const Types&... args );

(2)(C++11 起)
(C++14 起为 constexpr)
(条件性 explicit)

template< class... UTypes >
tuple( UTypes&&... args );

(3)(C++11 起)
(C++14 起为 constexpr)
(条件性 explicit)

template< class... UTypes >
tuple( const tuple<UTypes...>& other );

(4)(C++11 起)
(C++14 起为 constexpr)
(条件性 explicit)

template <class... UTypes>
tuple( tuple<UTypes...>&& other );

(5)(C++11 起)
(C++14 起为 constexpr)
(条件性 explicit)

template< class U1, class U2 >
tuple( const pair<U1,U2>& p );

(6)(C++11 起)
(C++14 起为 constexpr)
(条件性 explicit)

template< class U1, class U2 >
tuple( pair<U1,U2>&& p );

(7)(C++11 起)
(C++14 起为 constexpr)
(条件性 explicit)

tuple( const tuple& other ) = default;

(8)(C++11 起)

tuple( tuple&& other ) = default;

(9)(C++11 起)

template< class Alloc >
tuple( std::allocator_arg_t, const Alloc& a );

(10)(C++11 起)
(C++20 起为 constexpr)
(条件性 explicit)
template< class Alloc >

tuple( std::allocator_arg_t, const Alloc& a,

       const Types&... args );
(11)(C++11 起)
(C++20 起为 constexpr)
(条件性 explicit)
template< class Alloc, class... UTypes >

tuple( std::allocator_arg_t, const Alloc& a,

       UTypes&&... args );
(12)(C++11 起)
(C++20 起为 constexpr)
(条件性 explicit)
template <class Alloc, class... UTypes>

tuple( std::allocator_arg_t, const Alloc& a,

       const tuple<UTypes...>& other );
(13)(C++11 起)
(C++20 起为 constexpr)
(条件性 explicit)
template< class Alloc, class... UTypes >

tuple( std::allocator_arg_t, const Alloc& a,

       tuple<UTypes...>&& other );
(14)(C++11 起)
(C++20 起为 constexpr)
(条件性 explicit)
template< class Alloc, class U1, class U2 >

tuple( std::allocator_arg_t, const Alloc& a,

       const pair<U1, U2>& p );
(15)(C++11 起)
(C++20 起为 constexpr)
(条件性 explicit)
template< class Alloc, class U1, class U2 >

tuple( std::allocator_arg_t, const Alloc& a,

       pair<U1, U2>&& p );
(16)(C++11 起)
(C++20 起为 constexpr)
(条件性 explicit)
template< class Alloc >

tuple( std::allocator_arg_t, const Alloc& a,

       const tuple& other );
(17)(C++11 起)
(C++20 起为 constexpr)
template< class Alloc >

tuple( std::allocator_arg_t, const Alloc& a,

       tuple&& other );
(18)(C++11 起)
(C++20 起为 constexpr)

 构造新的 tuple

1) 默认构造函数。值初始化所有元素。

此重载仅若 std::is_default_constructible<Ti>::value 对所有 i 为 true 才参与重载决议。

构造函数若且唯若对至少一个 iTi 不可从 {} 复制列表初始化才为 explicit 。

2) 直接构造函数。以对应参数初始化 tuple 的每个元素。

此重载仅若 sizeof...(Types) >= 1 与 std::is_copy_constructible<Ti>::value 对所有 i 为 true 才参与重载决议。

此构造函数若且唯若 std::is_convertible<const Ti&, Ti>::value 对至少一个 i 为 false 才为 explicit 。

3) 转换构造函数。以 std::forward<UTypes>(args) 中的对应值初始化 tuple 的每个元素。

此重载仅若 sizeof...(Types) == sizeof...(UTypes) 且 sizeof...(Types) >= 1 与 std::is_constructible<Ti, Ui&&>::value 对所有 i 为 true 才参与重载决议。

构造函数若且唯若才 std::is_convertible<Ui&&, Ti>::value 对至少一个 i 为 false 为 explicit 。

4) 转换复制构造函数。对 sizeof...(UTypes) 中所有 i ,以 std::get<i>(other) 初始化 tuple 的第 i 个元素。

此重载仅若

sizeof...(Types) == sizeof...(UTypes) 且
std::is_constructible_v<Ti, const Ui&> 对所有 i 为 true 且
sizeof...(Types) != 1 或

Types... 展开成 TUTypes... 展开成 U 时) std::is_convertible_v<const tuple<U>&, T> 、 std::is_constructible_v<T, const tuple<U>&> 与 std::is_same_v<T, U> 均为 false 才参与重载决议。

构造函数若且唯若 std::is_convertible<const Ui&, Ti>::value 对至少一个 i 为 false 才为 explicit 。

5) 转换移动构造函数。对 sizeof...(UTypes) 中所有 i ,以 std::forward<Ui>(std::get<i>(other)) 初始化 tuple 的第 i 个元素。

此重载仅若

sizeof...(Types) == sizeof...(UTypes) 且
std::is_constructible_v<Ti, Ui&&> 对所有 i 为 true 且
sizeof...(Types) != 1 或

Types... 展开成 TUTypes... 展开成 U 时) std::is_convertible_v<tuple<U>, T> 、 std::is_constructible_v<T, tuple<U>> 与 std::is_same_v<T, U> 均为 false 才参与重载决议。

构造函数若且唯若 std::is_convertible<Ui&&, Ti>::value 对至少一个 i 为 false 才为 explicit 。

6) pair 复制构造函数。构造 2-tuple ,从 p.first 构造第一个元素,从 p.second 构造第二个元素。

此重载仅若 sizeof...(Types) == 2 与 std::is_constructible<T0,const U1&>::value 与 std::is_constructible<T1, const U2&>::value 均为 true 才参与重载决议。

构造函数若且唯若 std::is_convertible<const U1&, T0>::value 或 std::is_convertible<const U2&, T1>::value 为 false 才为 explicit 。 }}

7) pair 移动构造函数。构造 2-tuple ,从 std::forward<U1>(p.first) 构造第一个元素,从 std::forward<U2>(p.second) 构造第二个元素。

此重载仅若 sizeof...(Types) == 2 与 std::is_constructible<T0, U1&&>::value 与 std::is_constructible<T1, U2&&>::value 均为 true 才参与重载决议。

构造函数若且唯若 std::is_convertible<U1&&, T0>::value 或 std::convertible<U2&&, T1>::value 为 false 才为 explicit 。

8) 隐式定义的复制构造函数。以 other 的对应元素初始化 tuple 的每个元素。

若此函数进行的每个操作都是 constexpr ,则它是 constexpr 。对于空 tuple std::tuple<> ,它是 constexpr 。

要求 std::is_copy_constructible<Ti>::value 对所有 i 为 true 。

9) 隐式定义的移动构造函数。以 std::forward<Ui>(std::get<i>(other)) 构造 tuple 的第 i 个元素。

若此函数进行的每个操作都是 constexpr ,则它是 constexpr 。对于空 tuple std::tuple<> ,它是 constexpr 。

要求 std::is_move_constructible<Ti>::value 对所有 i 为 true 。

10-18) 等同于 (1-9) ,除了以使用分配器构造创建每个元素每个元素,即以分配器 (Allocator) 对象 a 为额外参数传递给每个 std::uses_allocator<Ui, Alloc>::value 为 true 的对象的构造函数。

参数

args-用于初始化 tuple 每个元素的值
other-用于初始化 tuple 每个元素的值的 tuple
p-用于初始化此 2-tuple 的两个元素的值的 pair
a-用于使用分配器构造的分配器

 

注意

条件性 explicit 的构造函数使得可以用列表初始化语法于复制初始化语境构造 tuple :

std::tuple<int, int> foo_tuple() 
{return {1, -1};  // N4387 前错误return std::make_tuple(1, -1); // 始终工作
}

注意若列表中某元素不可隐式转换成目标 tuple 中的对应元素,则构造函数变为 explicit 。

using namespace std::chrono;
void launch_rocket_at(std::tuple<hours, minutes, seconds>);launch_rocket_at({hours(1), minutes(2), seconds(3)}); // OK
launch_rocket_at({1, 2, 3}); // 错误: int 不可隐式转换成 duration
launch_rocket_at(std::tuple<hours, minutes, seconds>{1, 2, 3}); // OK

调用示例

#include <tuple>
#include <iostream>
#include <string>
#include <typeinfo>
#include <stdexcept>
#include <iostream>
#include <vector>
#include <memory>// 打印任何大小 tuple 的辅助函数
template<class Tuple, std::size_t N>
struct TuplePrinter
{static void print(const Tuple& t){TuplePrinter < Tuple, N - 1 >::print(t);std::cout << ", " << std::get < N - 1 > (t);}
};template<class Tuple>
struct TuplePrinter<Tuple, 1>
{static void print(const Tuple& t){std::cout << std::get<0>(t);}
};template<class... Args>
void print(const std::tuple<Args...>& t)
{std::cout << "(";TuplePrinter<decltype(t), sizeof...(Args)>::print(t);std::cout << ")" << std::endl;
}
// 辅助函数结束int main()
{//1) 默认构造函数。值初始化所有元素。std::tuple<int, std::string, double> tuple1;std::cout << "Value-initialized: ";print(tuple1);//2) 直接构造函数。以对应参数初始化 tuple 的每个元素。std::tuple<int, std::string, double> tuple2(42, "Test", -3.14);std::cout << "Initialized with values: ";print(tuple2);//3) 转换构造函数。以 std::forward<UTypes>(args) 中的对应值初始化 tuple 的每个元素。std::tuple<char, std::string, int> tuple3(std::move(tuple2));std::cout << "Implicitly converted: ";print(tuple3);//4) 转换复制构造函数。对 sizeof...(UTypes) 中所有 i ,以 std::get<i>(other) 初始化 tuple 的第 i 个元素。std::tuple<char, std::string, int> tuple4(tuple2);std::cout << "Implicitly converted: ";print(tuple4);//5) 转换移动构造函数。对 sizeof...(UTypes) 中所有 i ,//以 std::forward<Ui>(std::get<i>(other)) 初始化 tuple 的第 i 个元素。std::tuple<char, std::string, int> tuple5(std::move(tuple2));std::cout << "Implicitly converted: ";print(tuple5);//6) pair 复制构造函数。构造 2-tuple ,从 p.first 构造第一个元素,从 p.second 构造第二个元素。std::tuple<int, double> tuple6(std::make_pair(42, 3.14));std::cout << "Constructed from a pair";print(tuple6);//7) pair 移动构造函数。构造 2-tuple ,从 std::forward<U1>(p.first) 构造第一个元素,//从 std::forward<U2>(p.second) 构造第二个元素。std::pair<int, double> pair1 = std::make_pair(42, 3.14);std::tuple<int, double> tuple7(std::move(pair1));std::cout << "Constructed from a pair";print(tuple7);//8) 隐式定义的复制构造函数。以 other 的对应元素初始化 tuple 的每个元素。std::tuple<char, std::string, int> tuple8(tuple2);std::cout << "Implicitly converted: ";print(tuple8);//9) 隐式定义的移动构造函数。以 std::forward<Ui>(std::get<i>(other)) 构造 tuple 的第 i 个元素。std::tuple<char, std::string, int> tuple9(std::move(tuple2));std::cout << "Implicitly converted: ";print(tuple9);return 0;
}

输出

Value-initialized: (0, , 0)
Initialized with values: (42, Test, -3.14)
Implicitly converted: (*, Test, -3)
Implicitly converted: (*, , -3)
Implicitly converted: (*, , -3)
Constructed from a pair(42, 3.14)
Constructed from a pair(42, 3.14)
Implicitly converted: (*, , -3)
Implicitly converted: (*, , -3)

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

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

相关文章

设计模式-备忘录模式(C++)

备忘录模式&#xff08;Memento Pattern&#xff09;是一种设计模式&#xff0c;用于在不破坏对象封装的情况下&#xff0c;捕获和保存对象的内部状态&#xff0c;并在需要时恢复到之前的状态。下面是一个简单的 C 实现备忘录模式的示例&#xff1a; #include <iostream>…

2024理解这几个安全漏洞,你也能做安全测试!

如今安全问题显得越来越重要&#xff0c;一个大型的互联网站点&#xff0c;你如果每天查看日志&#xff0c;会发现有很多尝试攻击性的脚本。 如果没有&#xff0c;证明网站影响力还不够大。信息一体化的背后深藏着各类安全隐患&#xff0c;例如由于开发人员的不严谨导致为Web应…

章节一、认识three.js与开发环境学习笔记01;

一、如何学习WEB可视化3D技术与课程内容演示&#xff1b; 1、项目案例&#xff1a; 政府有大量的新基建的项目&#xff1a;如数字孪生、智慧城市、智慧园区、智慧工厂、智慧消防等等都涉及了3d的可视化技术&#xff1b; 2、如何系统的学号WEB 3D可视化技术&#xff1f; three…

网络安全学习笔记1

1.了解kali及安装 vmware安装&#xff0c;用户名密码均为kali 2.metasploit是什么 3.metasploit攻击windows系统 在kali中打来终端 数据msfconsole 进入metasploit的控制终端界面 msf的使用法则&#xff1a; 1.使用模块 2.配置模块必选项 3.运行模块 三步操作、实现对…

逻辑回归与交叉熵--九五小庞

什么是逻辑回归 线性回归预测的是一个连续值&#xff0c;逻辑回归给出的“是”和“否”的回答 Singmoid sigmoid函数是一个概率分布函数&#xff0c;给定某个输入&#xff0c;它将输出为一个概率值 逻辑回归损失函数 平方差所惩罚的是与损失为同一数量级的情形&#xff0…

8、Redis-Jedis、Lettuce和一个Demo

目录 一、Jedis 二、Lettuce 三、一个Demo Java集成Redis主要有3个方案&#xff1a;Jedis、Lettuce和Redisson。 其中&#xff0c;Jedis、Lettuce侧重于单例Redis&#xff0c;而Redisson侧重于分布式服务。 项目资源在文末 一、Jedis 1、创建SpringBoot项目 2、引入依赖 …

电商小程序10分类管理

目录 1 分类数据源2 搭建功能3 创建变量读取数据4 绑定数据总结 本篇我们介绍一下电商小程序的分类管理功能的开发&#xff0c;先看我们的原型图&#xff1a; 在首页我们是展示了四个分类的内容&#xff0c;采用上边是图标&#xff0c;下边是文字的形式。使用低代码开发&#…

【系统分析师】-需求工程

一、需求工程 需求工程分为需求开发和需求管理。 需求开发&#xff1a;需求获取&#xff0c;需求分析&#xff0c;需求定义、需求验证。 需求管理&#xff1a;变更控制、版本控制、需求跟踪&#xff0c;需求状态跟踪。&#xff08;对需求基线的管理&#xff09; 1.1需求获取…

MySQL:合并查询语句

1、查询表的数据 t_book表数据 SELECT * FROM db_book.t_book; t_booktype表数据 SELECT * FROM db_book.t_booktype; 提醒&#xff1a; 下面的查询操作的数据来自上图查询表的数据 2. 使用 UNION 查询结果合并&#xff0c;会去掉重复的数据 使用UNION关键字是&#xff0c;数…

社区店经营口号大揭秘:如何吸引更多顾客?

社区店的经营口号是吸引顾客的重要工具&#xff0c;一个好的口号能够在短时间内传达店铺的特色和价值&#xff0c;并引起顾客的兴趣。 作为一名开鲜奶吧5年的创业者&#xff0c;我将分享一些关于社区店经营口号的干货&#xff0c;帮助你吸引更多的顾客。 1、突出独特卖点&…

群控代理IP搭建教程:打造一流的网络爬虫

目录 前言 一、什么是群控代理IP&#xff1f; 二、搭建群控代理IP的步骤 1. 获取代理IP资源 2. 配置代理IP池 3. 选择代理IP策略 4. 编写代理IP设置代码 5. 异常处理 三、总结 前言 群控代理IP是一种常用于网络爬虫的技术&#xff0c;通过使用多个代理IP实现并发请求…

优思学院|3步骤计算出Cpk|学习Minitab

在生产和质量管理中&#xff0c;准确了解和控制产品特性至关重要。一个关键的工具是Cpk值&#xff0c;它是衡量生产过程能力的重要指标。假设我们有一个产品特性的规格是5.080.02&#xff0c;通过收集和分析过程数据&#xff0c;我们可以计算出Cpk值&#xff0c;进而了解生产过…

CentOS 定时调度

文章目录 一、场景说明二、脚本职责三、参数说明四、操作示例五、注意事项 一、场景说明 本自动化脚本旨在为提高研发、测试、运维快速部署应用环境而编写。 脚本遵循拿来即用的原则快速完成 CentOS 系统各应用环境部署工作。 统一研发、测试、生产环境的部署模式、部署结构、…

Java中灵活使用Mockito

目录 Java中灵活使用Mockito引言Mockito简介基本用法实例演示使用场景和案例解决方案结语 Java中灵活使用Mockito 引言 Mockito是Java中常用的mock框架之一&#xff0c;用于进行单元测试时模拟对象的行为。本文将介绍Mockito的基本用法&#xff0c;并探讨如何在实际项目中灵活…

AP8P059 PIR 人体感应太阳能 LED 灯控制芯片

概述 AP8P059 是一款集成低压 LDO、光控、充电控制、过充保护、欠压保护、PIR感应、延时为一体的人体感应太阳能 LED灯控制芯片&#xff0c;只需要很少的外接元件&#xff0c;适用于锂电池供电的PIR人体感应LED灯具的应用。外置的一级带通增益放大器便于客户调整感应灵敏度&am…

QT MinGW64编译vlc源码

编译环境搭建 参考文章《QT Mingw32/64编译ffmpeg源码生成32/64bit库以及测试》&#xff0c;搭建msys64环境&#xff1b; 运行msys.exe,运行&#xff1a; pacman -S git subversion cvs automake autoconf libtool m4 make gettext pkg-config mingw-w64-i686-lua findutils …

docker配置数据默认存储路径graph已过时,新版本中是data-root

错误信息 我在修改/etc/docker/daemon.json文件中&#xff0c;添加存储路径graph字段。然后sudo systemctl restart docker包如下错误&#xff1a;使用journalctl -xeu docker.service错误信息&#xff0c;发现不能匹配graph字段。 原因 我的docker版本&#xff1a; 在doc…

mybatisplus整合flowable-ui-modeler报错

1、问题 Description:file [/Users/xingyuwei/Documents/project/java/springboot_01/target/classes/com/xingyu/mapper/TemplateMapper.class] required a single bean, but 2 were found:- sqlSessionFactory: defined by method sqlSessionFactory in class path resource…

TypeScript08:在TS中使用模块化

前言&#xff1a;tsconfig.json中的配置 一、前端领域中的模块化标准 前端领域中的模块化标准有&#xff1a; ES6、commonjs、amd、umd、system、esnext 二、 TS中如何书写模块化语句 TS 中&#xff0c;导入和导出模块&#xff0c;统一使用 ES6 的模块化标准。 myModule.ts &a…

Keil新版本安装编译器ARMCompiler 5.06

0x00 缘起 我手头的项目在使用最新版本的编译器后&#xff0c;烧录后无法正常运行&#xff0c;故安装5.06&#xff0c;测试后发现程序运行正常&#xff0c;以下为编译器的安装步骤。 0x01 解决方法 1. 下载编译器安装文件&#xff0c;可以去ARM官网下载&#xff0c;也可以使用我…