多次想使用这个可以含任意类型的容器都想不起来,特记录一下,供以后查证。
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的基本用法。