如果可以用C++17的话,就可以直接用Structured binding 语法接受多返回值啦~ ... auto func() { return tuple(A(1), 2, 3); } int main() { auto [a, b, c] = func(); ...
確定! 回上一頁