I'm a little bit scared about something like this:
std::map<DWORD, DWORD> tmap;
tmap[0]+=1;
tmap[0]+=1;
tmap[0]+=1;
Since DWORD's are not automatically initialized, I'm always afraid of tmap[0] being a random number that is incremented. How does the map know hot to initialize a DWORD if the runtime does not know how to do it?
Is it guaranteed, that the result is always tmap[0] == 3?
DWORD, it is better to describe what they really are, even if you think that "everyone should know that". – AndreyT May 7 '10 at 8:55operator[]doesn't really "update or insert." It "gets and maybe inserts." – Dennis Zickefoose May 7 '10 at 10:24