从std :: tuple解压缩的值的返回值优化

时间:2011-02-15 18:13:42

标签: c++ c++11 tuples return-value-optimization

是否有任何编译器能够通过std :: tuple对函数返回的多个值进行返回值优化?需要说明的是,在下面的代码中,是否有任何编译器能够避免不必要的副本?

std::vector<int> a;
std::list<float> b;
std::tie(a,b) = myFunctionThatReturnsAVectorAndList();

1 个答案:

答案 0 :(得分:4)

不值得担心。如果编译器无法执行RVO,move semantics将启动。