std::tie
提供了一种方便的方法来将 C++ 中的元组的内容解包到单独定义的变量中,如下面的示例所示
int a, b, c, d, e, f;
auto tup1 = std::make_tuple(1, 2, 3);
std::tie(a, b, c) = tup1;
但是,如果我们有一个像下面这样的嵌套元组
auto tup2 = std::make_tuple(1, 2, 3, std::make_tuple(4, 5, 6));
试图编译代码
std::tie(a, b, c, std::tie(d, e, f)) = tup2;
失败并出现错误
/tmp/tuple.cpp:10: error: invalid initialization of non-const reference of type ‘std::tuple<int&, int&, int&>&’ from an rvalue of type ‘std::tuple<int&, int&, int&>’
std::tie(a, b, c, std::tie(d, e, f)) = tup2;
^
有没有一种惯用的方法来解压缩 C++ 中的元组元组?