std::map iteration - order differences between Debug and Release builds - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T20:17:58Zhttp://stackoverflow.com/feeds/question/137258http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds4std::map iteration - order differences between Debug and Release buildsLeopardSkinPillBoxHat2008-09-26T01:29:20Z2009-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<const char*, pMethod> TMyMap;
TMyMap m_MyMap;
}
void
foo::InitMap()
{
m_MyMap["abc"] = &foo::abcMethod;
m_MyMap["def"] = &foo::defMethod;
}
void
foo::InvokeMethodsInMap()
{
for (TMyMap::const_iterator it = m_MyMap.begin();
it != m_MyMap.end(); it++)
{
(*it->second)(it->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#13726416Answer by Chris Jester-Young for std::map iteration - order differences between Debug and Release buildsChris Jester-Young2008-09-26T01:30:41Z2008-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><</code> comparison between keys).</p>
http://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds/137477#13747710Answer by Martin York for std::map iteration - order differences between Debug and Release buildsMartin York2008-09-26T02:49:49Z2008-10-25T19:54:25Z<p>The definition of map is:<br>
<b>map<Key, Data, Compare, Alloc></b></p>
<p>Where the last two template parameters default too:<br>
Compare: less<Key><br>
Alloc: allocator<value_type><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<const char*></i></b> this class just does a < 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 < 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& left,const char* const& right) const
{
return strcmp(left,right) < 0;
}
};
///
typedef std::map<const char*, int,StringLess> TMyMap;
</code></pre>
http://stackoverflow.com/questions/137258/stdmap-iteration-order-differences-between-debug-and-release-builds/137502#1375023Answer by The Dark for std::map iteration - order differences between Debug and Release buildsThe Dark2008-09-26T02:56:09Z2008-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#6987720Answer by ibraham for std::map iteration - order differences between Debug and Release buildsibraham2009-03-30T19:55:12Z2009-03-30T19:55:12Z<p>i want to know the different between to run,in order to,in order for and free exercise</p>