标签: c++ c++11 tuples return-value-optimization
是否有任何编译器能够通过std :: tuple对函数返回的多个值进行返回值优化?需要说明的是,在下面的代码中,是否有任何编译器能够避免不必要的副本?
std::vector<int> a; std::list<float> b; std::tie(a,b) = myFunctionThatReturnsAVectorAndList();
答案 0 :(得分:4)
不值得担心。如果编译器无法执行RVO,move semantics将启动。