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.

How does stl call the destructors of objects, as in std::vector::erase or std::vector::pop_back?

share|improve this question
Do you mean the semantics (e.g. order), or what C++ syntax they use to do so? – Pavel Minaev Jul 15 '11 at 0:06

2 Answers

up vote 4 down vote accepted

Perhaps some additions to Steve's nice answer:

Indeed, internal allocation is done by allocators, which serve two separate purposes: Allocating and releasing memory, and constructing and destroying objects. Objects are always (copy or move) constructed on insert and destroyed on erase, however, the interna vary.

Node-based containers will typically allocate and construct an entire internal node, which contains both the actual object and bookkeeping data (like the next/prev pointers in a doubly-linked list). When you erase one of those, the container will destroy the object and release the memory.

Sequence containers like vector will strictly separate allocation and construction; the amount of memory that's been allocated will typically only grow, but when you erase (after the erased object's destructor has been called), the other elements have to be moved to maintain contiguous memory layout.

The internal allocator work may look quite different from your usual new/delete work if you haven't seen it before, but ultimately there's always a construction and a destruction somewhere.

share|improve this answer
Oh, I think I see. Is it something like this? pastebin.com/yyCYCAZB Only in STL's case those functions are implemented in a class? – PiMaster Jul 15 '11 at 4:46
@PiMaster: Yeah, those are the typical workhorse functions of an allocator (but beware, a true allocator class has to satisfy tons of additional requirements). – Kerrek SB Jul 15 '11 at 4:57
Not really a ton of requirements, but one really horrible one about being global for the type, not instance. I should check if C++0x actually fixed this. – edA-qa mort-ora-y Jul 15 '11 at 7:14
What do you mean by that? – PiMaster Jul 15 '11 at 9:50
@edA: You also have to define a ton of typedefs and the infamous rebind mechanics... – Kerrek SB Jul 15 '11 at 11:11
show 2 more comments

The vector has an allocator associated with it, the destroy member is used to clean up.

Calls an objects destructor without deallocating the memory where the object was stored.

Incidentally you can follow this through the source yourself, given decent IDE.

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.