- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个问题:
当我尝试通过vector
算法将数据从(带有unique_ptr
的list
)移至(带有unique_ptr
的std::copy
)时,虽然成功,但是却在运行中令人迷惑!这是一个代码:
std::vector<std::unique_ptr<std::string>> vecUPTRstring;
std::unique_ptr<std::string> ptrStringArr1(new std::string("qwe"));
std::unique_ptr<std::string> ptrStringArr2(new std::string("asd"));
vecUPTRstring.push_back(std::move(ptrStringArr1));
vecUPTRstring.push_back(std::move(ptrStringArr2));
std::list<std::unique_ptr<std::string>> listUPTRstring;
std::copy(std::make_move_iterator(vecUPTRstring.begin()),
std::make_move_iterator(vecUPTRstring.end()),
std::make_move_iterator(listUPTRstring.begin())
);
for (auto& var : listUPTRstring)
{
cout << "list value = " << var << endl;
}
Expression: cannot dereference end list iterator
最佳答案
因为列表是空的,所以只能使源迭代器移动迭代器,而目标迭代器应改为插入器。如果目标容器中已经有dest.begin()
元素,并希望用源元素覆盖它们,则仅将n
作为目的地。
std::copy(std::make_move_iterator(vecUPTRstring.begin()),
std::make_move_iterator(vecUPTRstring.end()),
std::inserter(listUPTRstring, listUPTRstring.end()));
但是,我还必须建议使用
std::move
而不是带有移动迭代器的
std::copy
,因为它是
semantically equal且更简单/更清晰:
std::move(vecUPTRstring.begin(),
vecUPTRstring.end(),
std::inserter(listUPTRstring, listUPTRstring.end()));
关于c++ - 如何在std::copy算法中使用std::make_move_iterator?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64900224/
这个让我彻底糊涂了。在下面的示例中,我得到了错误: error C2664: 'void std::unique_ptr::swap(std::unique_ptr &&)' : cannot con
我有一个问题: 当我尝试通过vector算法将数据从(带有unique_ptr的list)移至(带有unique_ptr的std::copy)时,虽然成功,但是却在运行中令人迷惑!这是一个代码: st
我有一个 vector 的 vector ,我想将它们一个接一个地连接起来形成一个长 vector 。这可以通过在末尾插入来完成。灵感来自 this question ,我在想,使用 make_mov
从 C++11 开始,要将一些 vector y 附加到另一个 vector x,您可以这样做: x.insert(x.end(), std::make_move_iterator(y.begin()
有人可以向我解释为什么编译失败吗: #include #include #include #include #include template std::unordered_set Fail
我期待 std::make_move_iterator总是会 move 内容,但似乎不会。 看起来是在vector中 move 元素但不在vector . 请看下面的代码片段: #include #
我是一名优秀的程序员,十分优秀!