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.

I have a container of std::map<string,std::map<string,int>>.

  1. How do I insert data into such a container? Do I have to have an inner map as additional variable or not? The code should compile under both MSVC 2010 and XCode 4.2 (Snow Leopard).

  2. Is XCode 4.2 under Snow Leopard (10.6) supports such a container?

share|improve this question
2  
What have you tried? – Joe Nov 27 '12 at 4:30

2 Answers

up vote 3 down vote accepted

Just use the overloaded [] operator and you are done:

std::map<string,std::map<string,int> > data;
data["foo"]["bar"] = 10;

and yes, Xcode 4.2 supports them, I personally used them under OSX with no problems.

share|improve this answer
Thank you. Works fine. – Igor Nov 27 '12 at 7:44

As a simple answer you need to have a temporary map:

std::map<string, int> tempMap;
std::string tempString;

Then you will need to insert these into the above map once they have been set.

tempMap.insert(std::pair<string, std::map<string, int>>(tempString, tempMap))

Then you can access them as in Jacks answer.

share|improve this answer
There is no need I guess to have a temporary map, whenever you use the [], if element doesn't exist, it is automatically created hence you don't have to insert any temporary map (unless you need to insert something already filled) – Jack Nov 27 '12 at 14:01
@Jack Thanks, i guess this is just a different way of doing it then. – Ben Nov 27 '12 at 22:32

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.