auto test() { int a, b; std::tie(a, b) = std::make_tuple(2, 3); // a is now 2, b is now 3 return a + b; // 5 }. Mais comment fonctionne cette magie noire ?
確定! 回上一頁