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