How can I copy one map into another using std::copy?(如何使用 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<k, v>::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 将一张地图复制到另一张地图中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 std::copy 将一张地图复制到另一张地图中?
基础教程推荐
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01