std::map iteration - order differences between Debug and Release builds - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T20:17:58Z http://stackoverflow.com/feeds/question/137258 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds 4 std::map iteration - order differences between Debug and Release builds LeopardSkinPillBoxHat 2008-09-26T01:29:20Z 2009-03-30T19:55:12Z <p>Here's a common code pattern I have to work with:</p> <pre><code>class foo { public: void InitMap(); void InvokeMethodsInMap(); static void abcMethod(); static void defMethod(); private: typedef std::map&lt;const char*, pMethod&gt; TMyMap; TMyMap m_MyMap; } void foo::InitMap() { m_MyMap["abc"] = &amp;foo::abcMethod; m_MyMap["def"] = &amp;foo::defMethod; } void foo::InvokeMethodsInMap() { for (TMyMap::const_iterator it = m_MyMap.begin(); it != m_MyMap.end(); it++) { (*it-&gt;second)(it-&gt;first); } } </code></pre> <p>However, I have found that the <em>order</em> that the map is processed in (within the for loop) can differ based upon whether the build configuration is Release or Debug. It seems that the compiler optimisation that occurs in Release builds affects this order.</p> <p>I thought that by using <code>begin()</code> in the loop above, and incrementing the iterator after each method call, it would process the map in order of initialisation. However, I also remember reading that a map is implemented as a hash table, and order cannot be guaranteed.</p> <p>This is particularly annoying, as most of the unit tests are run on a Debug build, and often strange order dependency bugs aren't found until the external QA team start testing (because they use a Release build).</p> <p>Can anyone explain this strange behaviour?</p> http://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds/137264#137264 16 Answer by Chris Jester-Young for std::map iteration - order differences between Debug and Release builds Chris Jester-Young 2008-09-26T01:30:41Z 2008-09-26T01:30:41Z <p>Don't use <code>const char*</code> as the key for maps. That means the map is ordered by the addresses of the strings, not the contents of the strings. Use a <code>std::string</code> as the key type, instead.</p> <p><code>std::map</code> is not a hash table, it's usually implemented as a red-black tree, and elements are guaranteed to be ordered by some criteria (by default, <code>&lt;</code> comparison between keys).</p> http://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds/137477#137477 10 Answer by Martin York for std::map iteration - order differences between Debug and Release builds Martin York 2008-09-26T02:49:49Z 2008-10-25T19:54:25Z <p>The definition of map is:<br> <b>map&lt;Key, Data, Compare, Alloc&gt;</b></p> <p>Where the last two template parameters default too:<br> Compare:&nbsp;less&lt;Key&gt;<br> Alloc:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;allocator&lt;value_type&gt;<br></p> <p>When inserting new values into a map. The new value (valueToInsert) is compared against the old values in order (<b>N.B.</b> This is not sequential search, the standard guarantees a max insert complexity of O(log(N)) ) until Compare(value,ValueToInsert) returns true. Because you are using <b><i>'const char*'</i></b> as the key. The Compare Object is using <b><i>less&lt;const char*&gt;</i></b> this class just does a &lt; on the two values. So in effect you are comparing the pointer values (not the string) therefore the order is random (as you don't know where the compiler will put strings.</p> <p>There are two possible solutions:</p> <ul> <li>Change the type of the key so that it compares the string values.</li> <li>Define another Compare Type that does what you need.</li> </ul> <p>Personally I (like Chris) would just use a std::string because &lt; operator used on strings returns a comparison based on the string content. But for arguments sake we can just define a Compare type.</p> <pre><code>struct StringLess { bool operator()(const char* const&amp; left,const char* const&amp; right) const { return strcmp(left,right) &lt; 0; } }; /// typedef std::map&lt;const char*, int,StringLess&gt; TMyMap; </code></pre> http://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds/137502#137502 3 Answer by The Dark for std::map iteration - order differences between Debug and Release builds The Dark 2008-09-26T02:56:09Z 2008-09-26T02:56:09Z <p>If you want to use const char * as the key for your map, also set a key comparison function that uses strcmp (or similar) to compare the keys. That way your map will be ordered by the string's contents, rather than the string's pointer value (i.e. location in memory).</p> http://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds/698772#698772 0 Answer by ibraham for std::map iteration - order differences between Debug and Release builds ibraham 2009-03-30T19:55:12Z 2009-03-30T19:55:12Z <p>i want to know the different between to run,in order to,in order for and free exercise</p>