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 an error I couldn't figure where it occues on the following:

I'm acutally using a map with vectors in it:
map<vector<string> , vector<string> > parameterMap;

because I need a few of them (how many is decided on runtime) I put them into a list (vector): vector declaration on head of method:
vector<map<vector<string> , vector<string> > > listedParameterMap;

insertion of a map into the vector:
listedParameterMap.insert(listedParameterMap.end(), 1, parameterMap);

This procedure works fine on the first time. The second time (map is filled correctly) it down't work.
I noticed a thing: I give out the size of the map:
cout << "listedParameterMap " << listedParameterMap.size();
it shown size is 2 after the second time, the watch says it still 1. It also shows me wired content:

Screenshot: alt text

Last should contain something looking like First The second map which is inserted is defently filled correctly. Same for the vectors: part1_input and part2_output

Code:

for (unsigned int index = 0; index < part1_input.size(); index++) {
        map<vector<string> , vector<string> > parameterMap;
        parameterMap.insert
        (pair<vector<string> , vector<string> > (part1_input[index], part2_output[index]));
        listedParameterMap.insert(listedParameterMap.end(), 1, parameterMap);
        cout << "listedParameterMap " << listedParameterMap.size();
}

I really would appreciate any ideas why this happens...



EDIT:

"Solution" was printing the stuff out. The watch-window isn't displaying the correct values. That means my Problem is caused somewhere else. But this here is anwsered. Thanks to anyone how tried to help me!

share|improve this question
7  
Please define "it don't work". – Oli Charlesworth Jan 20 '11 at 12:47
2  
Also, please consider using typedefs! – Oli Charlesworth Jan 20 '11 at 12:48
Look at the picture... giving me -1 before asking isn't helping me! You can see there the second entry (Last) it's not like it should be (similiar to First) – Beasly Jan 20 '11 at 12:52
We need to know what error you're getting, and what's the "wired content"? And does the compiler throw an error, or is it just a runtime error? – LostInTheCode Jan 20 '11 at 12:56
Don't you see the screenshot I inserted? – Beasly Jan 20 '11 at 12:58
show 4 more comments

1 Answer

up vote 1 down vote accepted

I would like to see a test where you output something from your collections to see if you are seeing what you think you should see. Actually why not write a proper unit test?

You are passing a lot of collections around by value. This can be quite expensive, but in addition, you may be updating something that is a copy of what you think you are actually updating, and then not seeing the results in the original.

I would not pay too much attention to values in Visual Studio's "watch" window, particularly if you are running an optimised build.

share|improve this answer
I'm already on it... – Beasly Jan 20 '11 at 13:13
it seems to be in correctly. I don't understand then why the program crashes on using this list. I thought because it's not filled correctly (watches). I'll keep looking. If I don't find it I'll open a new question. Thank you! – Beasly Jan 20 '11 at 14:11

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.