std::map difference between index and insert calls. - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T00:29:07Zhttp://stackoverflow.com/feeds/question/1594631http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1594631/stdmap-difference-between-index-and-insert-calls1std::map difference between index and insert calls.Absolute0http://stackoverflow.com/users/1727762009-10-20T13:32:34Z2009-10-20T15:35:29Z
<p>What is the difference between the index overloaded operator and the insert method call for std::map?</p>
<p>ie:</p>
<pre><code>some_map["x"] = 500;
</code></pre>
<p>vs.</p>
<pre><code>some_map.insert(pair<std::string, int>("x", 500));
</code></pre>
http://stackoverflow.com/questions/1594631/stdmap-difference-between-index-and-insert-calls/1594665#15946650Answer by Brandon Haugen for std::map difference between index and insert calls.Brandon Haugenhttp://stackoverflow.com/users/9242009-10-20T13:38:02Z2009-10-20T13:38:02Z<p>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.</p>
http://stackoverflow.com/questions/1594631/stdmap-difference-between-index-and-insert-calls/1594669#15946699Answer by pxb for std::map difference between index and insert calls.pxbhttp://stackoverflow.com/users/1803732009-10-20T13:39:00Z2009-10-20T13:53:28Z<p>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</p>
<p>The assignment to the subscript operator [] just overwrites whatever's there (inserting an entry if there isn't one there already)</p>
<p>Either of the insert and [] operators can cause issues if you're not expecting that behaviour and don't accommodate for it.</p>
<p>Eg with insert:</p>
<pre><code>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
</code></pre>
<p>and with [] operator:</p>
<pre><code>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
</code></pre>
<p>I think those are correct, but haven't compiled them, so may have syntax errors</p>
http://stackoverflow.com/questions/1594631/stdmap-difference-between-index-and-insert-calls/1594683#15946835Answer by Charles Bailey for std::map difference between index and insert calls.Charles Baileyhttp://stackoverflow.com/users/195632009-10-20T13:40:24Z2009-10-20T13:40:24Z<p>For a <code>map</code>, the former (<code>operator[]</code>) expression will always replace the value part of the key-value pair with the new supplied value. A new key-value pair will be inserted if one doesn't already exist.</p>
<p>In contrast, <code>insert</code> will only insert a new key-value pair if a key-value pair with the supplied key part does not already exist in the map.</p>
http://stackoverflow.com/questions/1594631/stdmap-difference-between-index-and-insert-calls/1595488#15954883Answer by Michael Burr for std::map difference between index and insert calls.Michael Burrhttp://stackoverflow.com/users/127112009-10-20T15:30:08Z2009-10-20T15:35:29Z<p>In addition to the fact that <code>map::operator[]</code> will replace an existing value is that <code>operator[]</code> map::will <strong>create and add to the map</strong> a default existing value to replace before the replacement occurs (the <code>map::operator[]()</code> call has to return a reference to something). For items that are expensive to create this could be a performance issue.</p>
<p>See "Item 24: Choose carefully between <code>map::operator[]</code> and <code>map::insert</code> when efficiency is important" in <a href="http://rads.stackoverflow.com/amzn/click/0321334876" rel="nofollow">Scott Meyers' Effective STL</a>.</p>