当前位置:   article > 正文

C++编程->tuple(元组)_c++ 元组

c++ 元组

    类模板tuple 是类模板pair的一般化实现。

    元组是一种数据结构,其中的元素具有特定数目和序列。 一个元组示例是具有三个元素(称为 3 元组或者三)的数据结构,用来存储标识符,如一个人的名字在第一个元素中,年份在第二个元素中,此人当年的收入在在第三个元素中的。

元组通常有四种不同的使用方式:

  • 表示一组数据。 例如,元组可以表示一条数据库记录,并且其组件可以表示记录的各个字段。

  • 提供对数据集的轻松访问和操作。

  • 通过单个参数将多个值传递给一个方法。 例如,该Thread::Start(Object) 方法具有一个参数,可以使用该参数向在启动线程执行时的方法提供一个值。 如果将Tuple<T1, T2, T3> 对象作为方法参数提供,则可以提供具有三项数据的线程启动例程。


    类型tuple<T1,T2,T3....Tn>对象具有n个成员。以下是tuple的复制,初始化等相关操作。

    

default (1)
constexpr tuple();
copy / move (2)
tuple (const tuple& tpl) = default;
tuple (tuple&& tpl) = default;
implicit conversion (3)
template <class... UTypes>
  tuple (const tuple<UTypes...>& tpl);
template <class... UTypes>
  tuple (tuple<UTypes...>&& tpl);
initialization (4)
explicit tuple (const Types&... elems);
template <class... UTypes>
  explicit tuple (UTypes&&... elems);
conversion from pair (5)
template <class U1, class U2>
  tuple (const pair<U1,U2>& pr);
template <class U1, class U2>
  tuple (pair<U1,U2>&& pr);
allocator (6)
template<class Alloc>
  tuple (allocator_arg_t aa, const Alloc& alloc);
template<class Alloc>
  tuple (allocator_arg_t aa, const Alloc& alloc, const tuple& tpl);
template<class Alloc>
  tuple (allocator_arg_t aa, const Alloc& alloc, tuple&& tpl);
template<class Alloc,class... UTypes>
  tuple (allocator_arg_t aa, const Alloc& alloc, const tuple<UTypes...>& tpl);
template<class Alloc, class... UTypes>
  tuple (allocator_arg_t aa, const Alloc& alloc, tuple<UTypes...>&& tpl);
template<class Alloc>
  tuple (allocator_arg_t aa, const Alloc& alloc, const Types&... elems);
template<class Alloc, class... UTypes>
  tuple (allocator_arg_t aa, const Alloc& alloc, UTypes&&... elems);
template<class Alloc, class U1, class U2>
  tuple (allocator_arg_t aa, const Alloc& alloc, const pair<U1,U2>& pr);
template<class Alloc, class U1, class U2>
  tuple (allocator_arg_t aa, const Alloc& alloc, pair<U1,U2>&& pr);

下面贴一段代码:

  1. //初始化并赋值 foo
  2. std::tuple<int,char> foo (10,'x');
  3. //初始化并赋值 bar
  4. auto bar = std::make_tuple ("test", 3.1, 14, 'y');
  5. //对bar第三个类型赋值
  6. std::get<2>(bar) = 100; // access element
  7. int myint; char mychar;
  8. //获取foo类型值并输出
  9. std::tie (myint, mychar) = foo; // unpack elements
  10. std::cout << "foo contains: ";
  11. std::cout <<"the foo's first value is :"<<std::get<0>(foo) << ' ';
  12. std::cout <<"the foo's second valve is : " <<std::get<1>(foo) << '\n';
  13. //获取tuple中元素的个数
  14. int size1=std::tuple_size<decltype(bar)>::value;
  15. cout<<"bar size is :"<<size1<<endl;
  16. //新建一个结构体
  17. struct s1
  18. {
  19. vector<int>l1;
  20. float l2;
  21. list<int>l3;
  22. };
  23. //赋值
  24. s1 s1_var;
  25. s1_var.l1.push_back(12);
  26. s1_var.l2=23;
  27. s1_var.l3.push_back(13);
  28. tuple<s1,int,float>tuple3(s1_var,15,23.2);
  29. int size2=std::tuple_size<decltype(tuple3)>::value;
  30. cout<<"tuple3 size is :"<<size2<<endl;
  31. //输出tuple3的值
  32. cout<<"output tuple3's the second var : "<<get<0>(tuple3).l2<<endl;
  33. cout<<endl;

运行后结果如下:

foo contains: the foo's first value is
bar size is :4
tuple3 size is :3
output tuple3's the second var : 23



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/305847
推荐阅读
相关标签
  

闽ICP备14008679号