I am using a varibale of type std::map and I keep inserting data in it and updating them, But after few minutes, the data I am reading back is corrupted. Is that possible? Or I am mis-diagnosing? Under whcih circumstances would that be possible? Thanks in advance.
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.
|
closed as not a real question by Nawaz, Mark B, meagar, larsmans, ybungalobill May 6 '11 at 17:48
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Here is a case where entries into a std::map could be corrupted.
Now, this case has little to do with the map itself, but more to do with the object that I put in. In this case, the object that I put in loses scope after the insert, and then is not backed by any memory. (It's an invalid pointer). |
|||||
|