为什么使用 std::auto_ptr<> 是错误的 用标准容器?
为什么在标准容器中使用 std::auto_ptr
是错误的?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
为什么在标准容器中使用 std::auto_ptr
是错误的?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
C++ 标准规定 STL 元素必须是“可复制构造的”和“可赋值的”。 换句话说,一个元素必须能够被赋值或复制,并且两个元素在逻辑上是独立的。
std::auto_ptr
不满足此要求。以此代码为例:
要克服此限制,您应该使用
std ::unique_ptr
,std::shared_ptr
或std::weak_ptr
智能指针或 boost 等效项(如果您没有 C++11)。 这里是这些智能指针的 boost 库文档。The C++ Standard says that an STL element must be "copy-constructible" and "assignable." In other words, an element must be able to be assigned or copied and the two elements are logically independent.
std::auto_ptr
does not fulfill this requirement.Take for example this code:
To overcome this limitation, you should use the
std::unique_ptr
,std::shared_ptr
orstd::weak_ptr
smart pointers or the boost equivalents if you don't have C++11. Here is the boost library documentation for these smart pointers.auto_ptr
的复制语义与容器不兼容。具体来说,将一个
auto_ptr
复制到另一个并不会创建两个相等的对象,因为一个对象已经失去了指针的所有权。更具体地说,复制
auto_ptr
会导致其中一个副本释放指针。 其中哪些保留在容器中尚未定义。 因此,如果将auto_ptrs
存储在容器中,您可能会随机失去对指针的访问权限。The copy semantics of
auto_ptr
are not compatible with the containers.Specifically, copying one
auto_ptr
to another does not create two equal objects since one has lost its ownership of the pointer.More specifically, copying an
auto_ptr
causes one of the copies to let go of the pointer. Which of these remains in the container is not defined. Therefore, you can randomly lose access to pointers if you storeauto_ptrs
in the containers.STL 容器存储所包含项目的副本。 当复制 auto_ptr 时,它将旧的 ptr 设置为 null。 许多容器方法都会被这种行为破坏。
STL containers store copies of contained items. When an auto_ptr is copied, it sets the old ptr to null. Many container methods are broken by this behavior.
C++03 标准 (ISO-IEC 14882-2003) 在第 20.4.5 条第 3 段中表示:
C++11 标准 (ISO-IEC 14882-2011) 在附录 D.10.1 第 3 段中表示:
C++14 标准 (ISO-IEC 14882-2014) 在附录 C.4.2 中说明
附录 D:兼容性特征:
C++03 Standard (ISO-IEC 14882-2003) says in clause 20.4.5 paragraph 3:
C++11 Standard (ISO-IEC 14882-2011) says in appendix D.10.1 paragraph 3:
C++14 Standard (ISO-IEC 14882-2014) says in appendix C.4.2
Annex D: compatibility features:
STL 容器需要能够复制存储在其中的项目,并且被设计为期望原始和副本是等效的。 自动指针对象具有完全不同的契约,通过复制创建所有权转移。 这意味着 auto_ptr 的容器将根据使用情况表现出奇怪的行为。
在Effective STL (Scott Meyers) 第 8 项中有对可能出错的地方的详细描述,在Effective C++ (Scott Meyers) 第 13 项中也有不太详细的描述。
The STL containers need to be able to copy the items you store in them, and are designed to expect the original and the copy to be equivalent. auto pointer objects have a completely different contract, whereby copying creates a transfer of ownership. This means that containers of auto_ptr will exhibit strange behaviour, depending on usage.
There is a detailed description of what can go wrong in Effective STL (Scott Meyers) item 8 and also a not-so-detailed description in Effective C++ (Scott Meyers) item 13.
关于这个主题的两篇超级优秀的文章:
Two super excellent articles on the subject: