我用过 std::tie 没有考虑太多。它有效,所以我刚刚接受了这一点: auto test() { int a, b; std::tie(a, b) = std::make_tuple(2, 3); // a is now 2, ...
確定! 回上一頁