gpt4 book ai didi

c++ - 如何在std::copy算法中使用std::make_move_iterator?

转载 作者:行者123 更新时间:2023-12-03 07:11:52 28 4
gpt4 key购买 nike

我有一个问题:
当我尝试通过vector算法将数据从(带有unique_ptrlist)移至(带有unique_ptrstd::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


我已经检查了不同的修复方法,并阅读了包括 this one在内的一些文章,但是我仍然需要解决此问题的帮助。

最佳答案

因为列表是空的,所以只能使源迭代器移动迭代器,而目标迭代器应改为插入器。如果目标容器中已经有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/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com