std::map difference between index and insert calls. - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T00:29:07Z http://stackoverflow.com/feeds/question/1594631 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1594631/stdmap-difference-between-index-and-insert-calls 1 std::map difference between index and insert calls. Absolute0 http://stackoverflow.com/users/172776 2009-10-20T13:32:34Z 2009-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&lt;std::string, int&gt;("x", 500)); </code></pre> http://stackoverflow.com/questions/1594631/stdmap-difference-between-index-and-insert-calls/1594665#1594665 0 Answer by Brandon Haugen for std::map difference between index and insert calls. Brandon Haugen http://stackoverflow.com/users/924 2009-10-20T13:38:02Z 2009-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#1594669 9 Answer by pxb for std::map difference between index and insert calls. pxb http://stackoverflow.com/users/180373 2009-10-20T13:39:00Z 2009-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&lt; int, std::string* &gt; 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&lt; int, std::string* &gt; 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#1594683 5 Answer by Charles Bailey for std::map difference between index and insert calls. Charles Bailey http://stackoverflow.com/users/19563 2009-10-20T13:40:24Z 2009-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#1595488 3 Answer by Michael Burr for std::map difference between index and insert calls. Michael Burr http://stackoverflow.com/users/12711 2009-10-20T15:30:08Z 2009-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>