std::tuple 和std::tie 的用法简介 ... std::tie会将变量的引用整合成一个tuple,从而实现批量赋值。 int i; double d; string s; tie(i, d, s) = t3; ...
確定! 回上一頁