我想通过包装器将列表初始化的向量传递给工作函数。我不需要原始函数(main)中的值,所以我应该移动它吗?
该文档指出:
复制 std::initializer_list 不会复制底层对象。
所以成本可能是最小的,但是移动它仍然有优势,还是列表复制省略并且向量直接列表初始化?
(编译)代码:
#include <iostream>
#include <vector>
void worker(std::vector<int>&& some_ints)
{
std::cout << "I hope my ints arrive here without further overhead :)" << std::endl;
}
void wrapper(std::vector<int>&& some_ints)
{
worker(std::move(some_ints));
}
int main()
{
wrapper( { 1, 5 } ); // <-- std::move here?
}