Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is some example code:

 #include<iostream>
 #include<map>
 #include<string>
 using namespace std;

 int main()
 {
   map<char, string> myMap;
   map['a'] = "ahh!!";
   cout << a << endl << b << endl;
   return 0;
 }

In this case i am wondering what does myMap['b'] return?

share|improve this question
2  
Your code won't even compile. You haven't defined a and b. – Prasoon Saurav Feb 23 '11 at 4:46
Or myMap, for that matter. – James McNellis Feb 23 '11 at 4:48
-1 for poasting invalid code and a question that involves undefined variable. – Cheers and hth. - Alf Feb 23 '11 at 5:25

3 Answers

up vote 6 down vote accepted

A default constructed std::string ins inserted into the std::map with key 'b' and a reference to that is returned.

It is often useful to consult the documentation, which defines the behavior of operator[] as:

Returns a reference to the object that is associated with a particular key. If the map does not already contain such an object, operator[] inserts the default object data_type().

(The SGI STL documentation is not documentation for the C++ Standard Library, but it is still an invaluable resource as most of the behavior of the Standard Library containers is the same or very close to the behavior of the SGI STL containers.)

share|improve this answer
And (one of) the original author of the STL wrote the SGI documentation I believe. Though I have no proof and that may just be an internet myth. – Loki Astari Feb 23 '11 at 5:48
That would be Matt Austern. He's been a significant contributor, for a longer period than Stepanov and Lee (who often are considered the original authors). He also wrote Generic Programming and the STL – MSalters Feb 24 '11 at 0:28

A default-constructed object (eg, an empty string in this case) is returned.

This is actually returned even when you say map['a'] = "ahh!!";. The [] operator inserts a default-constructed string at position 'a', and returns a reference to it, which the = operator is then called on.

share|improve this answer

std::map operator[] inserts the default constructed value type in to the map if the key provided for the lookup doesn't exist. So you will get an empty string as the result of the lookup.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.