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 区别
基础教程推荐
- 初始化列表*参数*评估顺序 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
