- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
C++ 元组库 -forward_as_tuple
描述
它构造一个元组对象,其中包含对 args 中适合作为参数转发给函数的元素的右值引用。
宣言
以下是 std::forward_as_tuple 的声明。
C++98
template<class... Types> tuple<Types&&...> forward_as_tuple (Types&&... args) noexcept;
C++11
template<class... Types> tuple<Types&&...> forward_as_tuple (Types&&... args) noexcept;
C++14
template<class... Types> constexpr tuple<Types&&...> forward_as_tuple (Types&&... args) noexcept;
参数
args - 它包含构造的元组应包含的元素列表。
返回值
它返回一个适当类型的元组对象来保存参数。
例外情况
无抛出保证- 该成员函数永远不会抛出异常。
数据竞赛
本次通话没有介绍任何内容。
例子
在下面的 std::forward_as_tuple 示例中。
#include <iostream> #include <tuple> #include <string> void print_pack (std::tuple<std::string&&,int&&> pack) { std::cout << std::get<0>(pack) << ", " << std::get<1>(pack) << '\n'; } int main() { std::string str ("Tutorialspoint.com"); print_pack (std::forward_as_tuple(str+" sairamkrishna",25)); print_pack (std::forward_as_tuple(str+" Gopal",22)); print_pack (std::forward_as_tuple(str+" Ram",30)); return 0; }
输出应该是这样的 -
Tutorialspoint.com sairamkrishna, 25 Tutorialspoint.com Gopal, 22 Tutorialspoint.com Ram, 30
元组.htm