• <bdo id='aCchb'></bdo><ul id='aCchb'></ul>
      <legend id='aCchb'><style id='aCchb'><dir id='aCchb'><q id='aCchb'></q></dir></style></legend>

      <tfoot id='aCchb'></tfoot>
      <i id='aCchb'><tr id='aCchb'><dt id='aCchb'><q id='aCchb'><span id='aCchb'><b id='aCchb'><form id='aCchb'><ins id='aCchb'></ins><ul id='aCchb'></ul><sub id='aCchb'></sub></form><legend id='aCchb'></legend><bdo id='aCchb'><pre id='aCchb'><center id='aCchb'></center></pre></bdo></b><th id='aCchb'></th></span></q></dt></tr></i><div id='aCchb'><tfoot id='aCchb'></tfoot><dl id='aCchb'><fieldset id='aCchb'></fieldset></dl></div>
    1. <small id='aCchb'></small><noframes id='aCchb'>

      为什么使用 std::auto_ptr&lt;&gt; 是错误的?使用标准容器?

      时间:2024-05-12

        <tbody id='6Ti2K'></tbody>
      <tfoot id='6Ti2K'></tfoot><legend id='6Ti2K'><style id='6Ti2K'><dir id='6Ti2K'><q id='6Ti2K'></q></dir></style></legend>
    2. <i id='6Ti2K'><tr id='6Ti2K'><dt id='6Ti2K'><q id='6Ti2K'><span id='6Ti2K'><b id='6Ti2K'><form id='6Ti2K'><ins id='6Ti2K'></ins><ul id='6Ti2K'></ul><sub id='6Ti2K'></sub></form><legend id='6Ti2K'></legend><bdo id='6Ti2K'><pre id='6Ti2K'><center id='6Ti2K'></center></pre></bdo></b><th id='6Ti2K'></th></span></q></dt></tr></i><div id='6Ti2K'><tfoot id='6Ti2K'></tfoot><dl id='6Ti2K'><fieldset id='6Ti2K'></fieldset></dl></div>
          • <bdo id='6Ti2K'></bdo><ul id='6Ti2K'></ul>
          • <small id='6Ti2K'></small><noframes id='6Ti2K'>

                本文介绍了为什么使用 std::auto_ptr&lt;&gt; 是错误的?使用标准容器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                为什么在标准容器中使用 std::auto_ptr<> 是错误的?

                Why is it wrong to use std::auto_ptr<> with standard containers?

                推荐答案

                C++ 标准规定 STL 元素必须是可复制构造的"和可分配的".换句话说,一个元素必须能够被分配或复制,并且这两个元素在逻辑上是独立的.std::auto_ptr 不满足此要求.

                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.

                以这段代码为例:

                class X
                {
                };
                
                std::vector<std::auto_ptr<X> > vecX;
                vecX.push_back(new X);
                
                std::auto_ptr<X> pX = vecX[0];  // vecX[0] is assigned NULL.
                

                要克服此限制,您应该使用 std::unique_ptr, std::shared_ptrstd::weak_ptr 智能指针或 boost 等价物,如果您没有 C++11.这里是这些智能指针的 boost 库文档.

                To overcome this limitation, you should use the std::unique_ptr, std::shared_ptr or std::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.

                这篇关于为什么使用 std::auto_ptr&lt;&gt; 是错误的?使用标准容器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:C++ std::set 更新很乏味:我无法就地更改元素 下一篇:STL 中的双端队列到底是什么?

                相关文章

                <small id='qwQjS'></small><noframes id='qwQjS'>

                    <legend id='qwQjS'><style id='qwQjS'><dir id='qwQjS'><q id='qwQjS'></q></dir></style></legend>
                    <i id='qwQjS'><tr id='qwQjS'><dt id='qwQjS'><q id='qwQjS'><span id='qwQjS'><b id='qwQjS'><form id='qwQjS'><ins id='qwQjS'></ins><ul id='qwQjS'></ul><sub id='qwQjS'></sub></form><legend id='qwQjS'></legend><bdo id='qwQjS'><pre id='qwQjS'><center id='qwQjS'></center></pre></bdo></b><th id='qwQjS'></th></span></q></dt></tr></i><div id='qwQjS'><tfoot id='qwQjS'></tfoot><dl id='qwQjS'><fieldset id='qwQjS'></fieldset></dl></div>
                    <tfoot id='qwQjS'></tfoot>

                    • <bdo id='qwQjS'></bdo><ul id='qwQjS'></ul>