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

<small id='8VqlR'></small><noframes id='8VqlR'>

      1. <legend id='8VqlR'><style id='8VqlR'><dir id='8VqlR'><q id='8VqlR'></q></dir></style></legend>
          <bdo id='8VqlR'></bdo><ul id='8VqlR'></ul>

        <tfoot id='8VqlR'></tfoot>

        如何使用 std::copy 将一张地图复制到另一张地图?

        How can I copy one map into another using std::copy?(如何使用 std::copy 将一张地图复制到另一张地图?)

              <legend id='w1x9f'><style id='w1x9f'><dir id='w1x9f'><q id='w1x9f'></q></dir></style></legend>
              <tfoot id='w1x9f'></tfoot>
                <tbody id='w1x9f'></tbody>

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

              • <bdo id='w1x9f'></bdo><ul id='w1x9f'></ul>
                <i id='w1x9f'><tr id='w1x9f'><dt id='w1x9f'><q id='w1x9f'><span id='w1x9f'><b id='w1x9f'><form id='w1x9f'><ins id='w1x9f'></ins><ul id='w1x9f'></ul><sub id='w1x9f'></sub></form><legend id='w1x9f'></legend><bdo id='w1x9f'><pre id='w1x9f'><center id='w1x9f'></center></pre></bdo></b><th id='w1x9f'></th></span></q></dt></tr></i><div id='w1x9f'><tfoot id='w1x9f'></tfoot><dl id='w1x9f'><fieldset id='w1x9f'></fieldset></dl></div>
                • 本文介绍了如何使用 std::copy 将一张地图复制到另一张地图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想将一个 std::map 的内容复制到另一个.我可以使用 std::copy 吗?显然,以下代码将不起作用:

                  I would like to copy the content of one std::map into another. Can I use std::copy for that? Obviously, the following code won't work:

                  int main() {
                    typedef std::map<int,double> Map;
                    Map m1;
                    m1[3] = 0.3;
                    m1[5] = 0.5;
                    Map m2;
                    m2[1] = 0.1;
                    std::copy(m1.begin(), m1.end(), m2.begin());
                    return 0;
                  }
                  

                  这将不起作用,因为 copy 将调用 m2.begin() 上的 operator* 来取消引用"它并分配一个值(所有值的类型都是 std::pair).然后调用operator++移动到m2中的下一个空格.由于 const int 中的 const 并且没有为任何新元素保留空间,因此这两个操作都不起作用.

                  This won't work because copy will call operator* on m2.begin() to "dereference" it and assign a value (all values are of type std::pair<const int, double>). Then it will call operator++ to move to the next space in m2. Both of these operations don't work because of the const in const int and there is no space reserved for any new elements.

                  有什么方法可以让它与 std::copy 一起工作?

                  Is there any way to make it work with std::copy?

                  谢谢!

                  推荐答案

                  您可以使用 GMan 的回答 --- 但问题是,为什么您要使用 std::copy?您应该使用成员函数 std::map::insert 代替.

                  You can use GMan's answer --- but the question is, why do you want to use std::copy? You should use the member function std::map<k, v>::insert instead.

                  m2.insert(m1.begin(), m1.end());
                  

                  这篇关于如何使用 std::copy 将一张地图复制到另一张地图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What is the past-the-end iterator in STL C++?(STL C++ 中的最后迭代器是什么?)
                  vector::at vs. vector::operator[](vector::at 与 vector::operator[])
                  C++ equivalent of StringBuffer/StringBuilder?(C++ 等效于 StringBuffer/StringBuilder?)
                  Adding types to the std namespace(将类型添加到 std 命名空间)
                  Is the C++ std::set thread-safe?(C++ std::set 线程安全吗?)
                  How to use std::find/std::find_if with a vector of custom class objects?(如何将 std::find/std::find_if 与自定义类对象的向量一起使用?)

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

                          <bdo id='7qaR2'></bdo><ul id='7qaR2'></ul>
                          <legend id='7qaR2'><style id='7qaR2'><dir id='7qaR2'><q id='7qaR2'></q></dir></style></legend>
                        • <tfoot id='7qaR2'></tfoot>

                          <small id='7qaR2'></small><noframes id='7qaR2'>