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.

For std::map, how will insert behave if it has to resize the container and the memory is not available?

share|improve this question

3 Answers

up vote 6 down vote accepted

STL map does not have to "resize" container. map (just like list) is a node based container; each insert allocates memory.

That said, out of memory situation is handled just like any other out-of-memory situation in C++: it throws a std::bad_alloc. STL containers with default allocators don't do anything fancy, they all end up allocating via standard new/delete operators somehow.

In STL map's case, it will throw exception and will otherwise behave as if it was not called. That is, the container will remain unmodified.

share|improve this answer

New will throw an exception. Easy as that.

The insert will not happen, and neither will the content of the dictionary be modified or corrupted.

share|improve this answer

To expand on Nils answer (yes it will throw), but what happens when it throws is sometimes confusing in the spec.

In 17.2.2 of the specification (regarding maps / exceptions), if insert() throws, that function has no effect. This is a strong guarantee for map. This differs from containers using contiguous allocation like vector or deque.

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.