c++之tuple

多次想使用这个可以含任意类型的容器都想不起来,特记录一下,供以后查证。


tuple的网络释义是多元组,由此可以推断出它的性质:一个可以包含任意不同类型的集合。


使用用法如下:

#include <iostream>     // std::cout
#include <tuple>        // std::tuple, std::get, std::tie, std::ignore

using namespace std;

int main()
{
	//tupe 的使用方法
	std::tuple<int, string> _tuple(1, "abc");	//“abc”默认为const char*,因此此处类型用的string
	auto _name = std::make_tuple("Tom", 21);//make_tuple的使用方法
	cout << "the age of Tom is " << std::get<1>(_name) << endl;//get后面尖括号跟的是集合中的位置,从0开始
	cout << "the first tuple has " << std::get<0>(_tuple) << endl;

	int myInt;
	std::tie(myInt, std::ignore) = _tuple;//此处可以调用全局函数tie绑定集合中的值到固定元素上
	cout << "the use of tie " << myInt << endl;//ignore的位置可以不绑定,即忽略
}



以上即为tuple的基本用法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值