C++ 元组库 - 领带


描述

它构造一个元组对象,其元素是对 args 中参数的引用,顺序相同。

宣言

以下是 std::tie 的声明。

C++98

	
template<class... Types>
   tuple<Types&...> tie (Types&... args) noexcept;

C++11

template<class... Types>
   tuple<Types&...> tie (Types&... args) noexcept;

C++14

template<class... Types>
   constexpr tuple<Types&...> tie (Types&... args) noexcept;

参数

args - 它包含构造的元组应包含的元素列表。

返回值

它返回一个元组,其中包含对 args 的左值引用。

例外情况

无抛出保证- 该成员函数永远不会抛出异常。

数据竞赛

本次通话没有介绍任何内容。

例子

在下面的 std::tie 示例中。

#include <iostream>
#include <tuple>

int main () {
   int myint;
   char mychar;

   std::tuple<int,float,char> mytuple;

   mytuple = std::make_tuple (10, 2.6, 'a');

   std::tie (myint, std::ignore, mychar) = mytuple;

   std::cout << "myint contains: " << myint << '\n';
   std::cout << "mychar contains: " << mychar << '\n';

   return 0;
}

输出应该是这样的 -

myint contains: 10
mychar contains: a
元组.htm