std::map difference between index and insert calls(索引和插入调用之间的 std::map 区别)
问题描述
索引重载运算符和std::map的insert方法调用有什么区别?
What is the difference between the index overloaded operator and the insert method call for std::map?
即:
some_map["x"] = 500;
对比
some_map.insert(pair<std::string, int>("x", 500));
推荐答案
相信insert()不会覆盖已经存在的值,可以通过测试返回的iterator/pair值中的bool值来检查操作结果
I believe insert() will not overwrite an existing value, and the result of the operation can be checked by testing the bool value in the iterator/pair value returned
对下标运算符 [] 的赋值只会覆盖那里的任何内容(如果那里还没有,则插入一个条目)
The assignment to the subscript operator [] just overwrites whatever's there (inserting an entry if there isn't one there already)
如果您没有预料到这种行为并且不适应这种行为,那么插入和 [] 运算符中的任何一个都可能导致问题.
Either of the insert and [] operators can cause issues if you're not expecting that behaviour and don't accommodate for it.
例如插入:
std::map< int, std::string* > intMap;
std::string* s1 = new std::string;
std::string* s2 = new std::string;
intMap.insert( std::make_pair( 100, s1 ) ); // inserted
intMap.insert( std::make_pair( 100, s2 ) ); // fails, s2 not in map, could leak if not tidied up
and with [] 运算符:
and with [] operator:
std::map< int, std::string* > intMap;
std::string* s1 = new std::string;
std::string* s2 = new std::string;
intMap[ 100 ] = s1; // inserted
intMap[ 100 ] = s2; // inserted, s1 now dropped from map, could leak if not tidied up
我认为这些是正确的,但没有编译它们,所以可能有语法错误
I think those are correct, but haven't compiled them, so may have syntax errors
这篇关于索引和插入调用之间的 std::map 区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:索引和插入调用之间的 std::map 区别


基础教程推荐
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17