map<string, string> dada;
dada["dummy"] = "papy";
cout << dada["pootoo"];
I'm puzzled because I don't know if it's considered undefined behaviour or not, how to know when I request a key which does not exist, do I just use find instead ?
|
|
The If it can't find one it transparently creates a default constructed element for it. (If you do not want this behaviour you can use the You can get a full list of methods of std::map here: http://en.cppreference.com/w/cpp/container/map Here is the documentation of 23.4.4.3 Map Element Access
|
I actually did not find anywhere in the standard that it says that. At the very least, not at 23.3.1.2 [lib.map.access] or anywhere else that I could remember to check. EDIT: Apparently I was looking at an old version of the standard. My mistake. – Vlad Ciobanu Apr 12 '12 at 13:41 |
|
@VladCiobanu: Above is 23.4.4.3 copied verbatim. Are you using the current version ISO/IEC 14882:2011(E)? – user1131467 Apr 12 '12 at 13:44 |
|
It's not undefined behavior. If |
|||
|
|
|
For operator[], if you try to access a value for a key that doesn't exist, a new value object that has been default constructed will be put into the map and it's reference returned. |
|||
|
|
|
The If you want to find a find an element, a better way is
(or the const alternative) which will return an iterator equal to
which will always return either 1 or 0 for a map since keys are unique. |
|||
|
|