gpt4 book ai didi

c++ - vector 的初始化因复制错误而失败

转载 作者:行者123 更新时间:2023-11-27 22:45:43 25 4
gpt4 key购买 nike

我正在努力正确初始化 std::unique_ptrstd::vector

示例代码:

#include <iostream>
#include <vector>
#include <memory>

class Base{
public:
std::string getString() { return this->string; };
protected:
std::string string;
};
class Derived: public Base{
public:
Derived(std::string bla){
this->string = bla;
}
};
class Collection{
protected:
std::vector<std::unique_ptr<Base>> mappings;
};
class DerivedCollection: public Collection{
public:
DerivedCollection(std::string bla){
std::vector<std::unique_ptr<Base>> maps;
maps.push_back(std::make_unique<Derived>(bla));
//or this: (does not work aswell)
//maps.emplace_back(new Derived(bla));
this->mappings = maps;
}
};

int main(int argc, char** argv){
DerivedCollection test = DerivedCollection("bla");
return 0;
}

不知何故,仅定义 mappings 会触发错误:

/usr/include/c++/6.3.1/bits/stl_construct.h:75:7: 
error: use of deleted function ‘std::unique_ptr<_Tp, _Dp>::unique_ptr(const std::unique_ptr<_Tp, _Dp>&) [with _Tp = Base; _Dp = std::default_delete<Base>]’
{ ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }

这告诉我,我设法从 const unique_ptr 构造了一个 unique_ptr,这不起作用,因为 unique_ptr 不可复制构造。

即使我在 DerivedCollection 构造函数中注释所有内容,这仍然会以某种方式失败。

我的猜测是我需要一个适合Collection 类的构造函数。不过我不确定如何定义它。

有什么想法吗?

-- 麦芽糖

最佳答案

maps 是不可复制的,因为它是 unique_ptrvector。将它移动到 mappings 中解决了这个问题:

this->mappings = std::move(maps);

live wandbox example


您的代码还有其他问题:

  • 您应该使用成员初始化列表而不是构造函数体来初始化数据成员。

  • getString 可以返回 const std::string& 以避免复制。

  • Derived 的构造函数可以std::move bla 到数据成员中。

  • test 可以初始化如下:DerivedCollection test{"bla"}

  • 永远不要使用
  • new - 请改用 make_unique

关于c++ - vector<unique_ptr> 的初始化因复制错误而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43309847/

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