std::forward_as_tuple
来自 cppreference.com
在头文件 <tuple> 中定义 |
||
template< class... Types > tuple<Types&&...> forward_as_tuple( Types&&... args ) noexcept; |
(自 C++11 起) (自 C++14 起为 constexpr) |
|
构造一个指向 args
中参数的引用的元组,适合作为函数的参数转发。当使用右值作为参数时,元组具有右值引用数据成员,否则具有左值引用数据成员。
内容 |
[编辑] 参数
args | - | 用于构造元组的零个或多个参数 |
[编辑] 返回值
一个 std::tuple 对象,创建方式与使用 std::tuple<Types&&...>(std::forward<Types>(args)...) 相同
[编辑] 说明
如果参数是临时变量,则 forward_as_tuple
不会延长其生命周期;它们必须在完整表达式结束之前使用。
[编辑] 示例
运行此代码
#include <iostream> #include <map> #include <tuple> #include <string> int main() { std::map<int, std::string> m; m.emplace(std::piecewise_construct, std::forward_as_tuple(10), std::forward_as_tuple(20, 'a')); std::cout << "m[10] = " << m[10] << '\n'; // The following is an error: it produces a // std::tuple<int&&, char&&> holding two dangling references. // // auto t = std::forward_as_tuple(20, 'a'); // m.emplace(std::piecewise_construct, std::forward_as_tuple(10), t); }
输出
m[10] = aaaaaaaaaaaaaaaaaaaa
[编辑] 另请参阅
(C++11) |
创建 tuple 对象,其类型由参数类型定义(函数模板) |
(C++11) |
创建 tuple 的左值引用,或将元组解包到单个对象中 (函数模板) |
(C++11) |
通过连接任意数量的元组来创建 tuple (函数模板) |
(C++17) |
使用元组的参数调用函数 (函数模板) |