What is the difference between the index overloaded operator and the insert method call for std::map?
ie:
some_map["x"] = 500;
vs.
some_map.insert(pair<std::string, int>("x", 500));
|
|
|
|
|
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. Eg with insert:
and with [] operator:
I think those are correct, but haven't compiled them, so may have syntax errors |
|||
|
|
|
|
The insert method inserts into the map, while the overloaded index operator will return the element with the key key_value if it is in the map, if it is not already in the map then it will insert it. |
||
|
|
|
For a In contrast, |
||
|
|
|
|
In addition to the fact that See "Item 24: Choose carefully between |
|||
|
|
make_pairyou show would deduceconst char*andintso an implicit conversion from onepairtype to the actualvalue_typeof themapwill be generated. – Charles Bailey Oct 20 at 14:12