c – 将unique_ptr的向量插入另一个向量

前端之家收集整理的这篇文章主要介绍了c – 将unique_ptr的向量插入另一个向量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个unique_ptr的向量,我想把它们附加到另一个unique_ptrs的向量.我通常会做一个简单的插入:
std::vector<std::unique_ptr<foo>> bar;
bar.push_back(std::unique_ptr<foo>(new foo(1)));
std::vector<std::unique_ptr<foo>> baz;
baz.push_back(std::unique_ptr<foo>(new foo(2)));
bar.insert(bar.end(),baz.begin(),baz.end());

但是这给我的编译错误类似于:

/usr/include/c++/4.8/bits/stl_algobase.h:335: error: use of deleted function 'std::unique_ptr<_Tp,_Dp>& std::unique_ptr<_Tp,_Dp>::operator=(const std::unique_ptr<_Tp,_Dp>&) [with _Tp = foo; _Dp = std::default_delete<foo>]'
    *__result = *__first;
              ^

有没有方便的方法插入或者我必须遍历baz和push_back在酒吧?我目前使用的是gcc 4.8.1.

谢谢

解决方法

unique_ptr不能与正常赋值运算符分配(错误表示已删除).你只能移动他们:
bar.insert(bar.end(),std::make_move_iterator(baz.begin()),std::make_move_iterator(baz.end())
);

当然,这会传输托管对象的所有权,原始指针将具有nullptr值.

原文链接:https://www.f2er.com/c/115412.html

猜你在找的C&C++相关文章