- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
多年后回到 C++;试图 catch C++11 和 14。我读过右值和移动语义。我以为我理解这个概念。显然不是。我看过几十个例子。但是我根本无法编译我的代码。我一定在示例中遗漏了一些明显的东西。由于 unique_ptr<int>
,我总是收到关于复制 ctor 被删除的错误有一个用户声明的移动构造函数。显然我在这个概念上遗漏了一些东西,但我无法弄清楚它是什么。这是代码,精简到本质:
#include <memory>
#include <utility>
#include <vector>
int main(int, char*[]) {
auto oneInt{std::make_unique<int>(0)};
auto someInts{std::vector<std::unique_ptr<int>>{std::move(oneInt)}};
return 0;
}
我做错了什么?
编辑:这是此特定代码的错误。请注意,我已经尝试了我能想到的所有代码变体,结果各不相同,但基本问题始终相同:copy ctor deleted because unique_ptr<int>
有一个用户声明的移动构造函数。
编辑:我已将代码更新为 #include <memory>
, 并粘贴新的错误。我只希望问题是那样的愚蠢。
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory:1752:31: error: call to implicitly-deleted copy constructor of
'std::__1::unique_ptr<int, std::__1::default_delete<int> >'
::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory:1668:18: note: in instantiation of function template
specialization 'std::__1::allocator<std::__1::unique_ptr<int, std::__1::default_delete<int> > >::construct<std::__1::unique_ptr<int, std::__1::default_delete<int> >,
const std::__1::unique_ptr<int, std::__1::default_delete<int> > &>' requested here
{__a.construct(__p, _VSTD::forward<_Args>(__args)...);}
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory:1514:14: note: in instantiation of function template
specialization 'std::__1::allocator_traits<std::__1::allocator<std::__1::unique_ptr<int, std::__1::default_delete<int> > > >::__construct<std::__1::unique_ptr<int,
std::__1::default_delete<int> >, const std::__1::unique_ptr<int, std::__1::default_delete<int> > &>' requested here
{__construct(__has_construct<allocator_type, _Tp*, _Args...>(),
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory:1598:17: note: in instantiation of function template
specialization 'std::__1::allocator_traits<std::__1::allocator<std::__1::unique_ptr<int, std::__1::default_delete<int> > > >::construct<std::__1::unique_ptr<int,
std::__1::default_delete<int> >, const std::__1::unique_ptr<int, std::__1::default_delete<int> > &>' requested here
construct(__a, _VSTD::__to_raw_pointer(__begin2), *__begin1);
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector:1024:21: note: in instantiation of function template
specialization 'std::__1::allocator_traits<std::__1::allocator<std::__1::unique_ptr<int, std::__1::default_delete<int> > > >::__construct_range_forward<const
std::__1::unique_ptr<int, std::__1::default_delete<int> > *, std::__1::unique_ptr<int, std::__1::default_delete<int> > *>' requested here
__alloc_traits::__construct_range_forward(__a, __first, __last, this->__end_);
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector:1285:9: note: in instantiation of function template
specialization 'std::__1::vector<std::__1::unique_ptr<int, std::__1::default_delete<int> >, std::__1::allocator<std::__1::unique_ptr<int, std::__1::default_delete<int> >
> >::__construct_at_end<const std::__1::unique_ptr<int, std::__1::default_delete<int> > *>' requested here
__construct_at_end(__il.begin(), __il.end(), __il.size());
^
virtual.cpp:7:21: note: in instantiation of member function 'std::__1::vector<std::__1::unique_ptr<int, std::__1::default_delete<int> >,
std::__1::allocator<std::__1::unique_ptr<int, std::__1::default_delete<int> > > >::vector' requested here
auto someInts{std::vector<std::unique_ptr<int>>{std::move(oneInt)}};
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory:2621:31: note: copy constructor is implicitly deleted because
'unique_ptr<int, std::__1::default_delete<int> >' has a user-declared move constructor
_LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
最佳答案
你的代码有很多问题。首先,过度使用 {}
初始化会造成困惑。使用 auto
很好,但是 auto x{...};
声明充满了危险,正如 auto x{single_value}
的含义随着时间的推移发生了变化。最好在合理的情况下使用 auto x = single_value;
语法。
其次,您不能通过 {}
初始化程序列表将 unique_ptr
插入到容器中。完全没有。通过 std::initializer_list
的项目 必须 是可复制的,而 unique_ptr
不是。
你要的是这个:
auto oneInt = std::make_unique<int>(0);
std::vector<std::unique_ptr<int>> someInts;
someInts.push_back(std::move(oneInt));
关于c++ - 被 vector<unique_ptr> 击败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45905796/
我进行了搜索以查看是否找到了解决此问题的方法,但没有找到答案。我遇到的问题是在我的代码编译时,我没有得到 intellisense 如果我收到一个参数(或声明一个变量),例如使用模板 T : uniq
我想在多态情况下将派生类 unique_ptr 的所有权转移到它的抽象基类 unique_ptr。怎么走? class Fruit { public: virtual void print()
unique_ptr> 之间有什么区别?和一个 list> ?威尔list>导致元素的内存也被自动管理? 最佳答案 说unique_ptr<>就像在说 *但具有自动删除的额外好处。 unique_pt
我第一次在我的项目中使用智能指针。在使用 unique_ptr 时,我对 unique_ptr 和原始指针组合有一些疑问。以及 unique_ptr 内部工作的方式。 有人可以根据我的理解解释/回答如
我创建了一个派生自 std::istream 的自定义 istream,当文件是压缩文件时使用自定义 streambuf,否则使用 std::filebuf。 #mystream.h class my
目前我正在尝试使用 std::unique_ptr,但我在 Visual Studio 2012 中遇到编译器错误。 class A { private: unique_ptr other; pub
我有以下三个代码片段来演示一个容易重现的问题。 using namespace boost::filesystem; using namespace std; int main() { pat
这个问题令人困惑,所以这里是我正在尝试做的事情的精简版: #include #include class A { }; class B : public A { public:
假设 class Owner 有 Member 成员,它还必须有一个指向它的 const 所有者的 const 指针。该指针在 Owner 的构造函数中提供给 member,该构造函数接受指向构成 m
下面的代码会抛出一个警告: 警告 C4239:使用了非标准扩展:“参数”:从“std::unique_ptr”到“std::unique_ptr &”的转换 std::unique_ptr foo()
这个问题在这里已经有了答案: Returning unique_ptr from functions (7 个答案) 关闭 8 年前。 我是 unique_ptr 的新手。一切都很顺利,直到我遇到一
如果 vector 不是 unique_ptr 或者如果我没有 vector 的 unique_ptr(并且不取消引用)它可以工作,但两者都会导致编译错误。我不确定发生了什么。 auto v = st
我正在尝试使用 unique_ptr到接受 unique_ptr 的函数中的派生类到基类。比如: class Base {}; class Derived : public Base {}; void
我是 C++ 和智能指针的新手,尤其是 unique_ptr 的行为。下面是我正在试验的一段代码: unique_ptr u1 = make_unique(2); unique_ptr u2 =
我类有这个成员: static std::unique_ptr[]> changestatecommands; 而且我找不到正确的方法来初始化它。我希望数组被初始化,但元素未初始化,所以我可以随时编写
我编写了以下使用 unique_ptr 的代码其中 unique_ptr预计 class Base { int i; public: Base( int i ) : i(i) {}
我有一个非常具体的需求,需要访问特定于派生类的功能,我在构建包含类时在 unique_ptr 中获得了该派生类的实例。然后,该包含类必须将其基类的 unique_ptr 上转型移动到包含类的基类构造函
有人可以建议如何使用自定义删除器从模板化唯一指针池返回唯一指针。 在下面的代码片段中,我使用 ObjectPool.h 作为我的模板类来获取一堆唯一指针。我正在使用 ObjectPool 在 DBCo
我在 std::vector> 中维护了一些对象池我将这个池中的对象传递给一个函数 void process(...) .我不清楚将这些对象之一传递给 process() 的最佳方式功能。如果我理解我
我用一个对象初始化了一个unique_ptr。因为我想将它的引用传递给函数并且不让函数更改对象内容,所以我必须传递 unique_ptr&给它。但是 gcc 5.4 不允许我初始化 unique_pt
我是一名优秀的程序员,十分优秀!