vote up 2 vote down star
1

Hi,

I came across a strange use of the destructor while working on an existing library. The destructor of a stack allocated stl vector was being called explicitly, when its the case that that object may need to be used again. These vector objects are a slightly customised version of the stl vector class that have a specialized clear method. In the destructor body there exist two method calls: clear(), _Tidy().

I've been trying to think of a good reason why this destructor is being called rather than just clear but I'm at a loss. Anyone shed any light on why this may be a good idea?

flag
Can you provide a code sample, of the vectors dtor, and how it is called? – Binary Worrier Oct 28 at 16:43
3  
What does _Tidy() do? – Brian Oct 28 at 16:44
Show us how the vector was created. – sbi Oct 28 at 17:07
The vector was created using the default constructor, by a simple declaration. _Tidy() releases the memory as far as I am aware. An example: CustomVector<Value> vector; ... later vector.~CustomVector(); – Colin Oct 28 at 17:12
"The vector was created using the default constructor, by a simple declaration." If so (I suppose you meant definition), then explicitly calling its dtor should only be done for very good reason and with great care. – sbi Oct 28 at 22:11

5 Answers

vote up 7 vote down

clear() isn't guaranteed to actually release the allocated storage in the vector; _Tidy() in the MSVC implementation will actually free that storage, so this was probably done as an optimization.

It's an evil thing to do, but you can do it legally (without undefined behavior) so long as the storage is reused by an object of the same type (ignoring cv-qualifiers) that takes up exactly all of the storage:

T automatic;
automatic.T::~T();
new (&automatic) T();

Section 3.8.7 of the C++ standard describes this usage scenario and explains how it's legal; it even includes an example that is similar to the above.

link|flag
vote up 4 vote down

Large vector?

Wild guess... when clear() is called the vector is usually emptied but the memory not released. That is why there's the pattern

std::vector<T>().swap(vector_to_clear);

to empty the vector for reuse and clear the allocated memory.

Perhaps the original author did not know the pattern and tried to get rid of the allocated memory in this wicked fashion. (I think _Tidy frees the allocated memory)

link|flag
The vectors vary in size but none eroneously large. I would love to know the original authors intent on this, and hopefully it was just a misguided memory deallocation – Colin Oct 28 at 17:14
My first question is such situations is: What's the checkin comment? – sbi Oct 29 at 9:26
vote up 1 vote down

Maybe the original coder cared about where in memory the objects were allocated.

Then the destructor must be called explicitly, as per this discussion.

link|flag
Which is probably the case since the discussion is about a stack-allocated vector. – Matthieu M. Oct 28 at 18:53
vote up 5 vote down

Could this class use some kind of placement new method? That's the only time I tend to see explicit destructors in use.

link|flag
Beat me to the punch while I was writing. ;) – John W Oct 28 at 16:47
vote up 1 vote down

It's definitely not a good idea. Any operation on an object after the destructor starts running yields undefined behavior.

link|flag
Or rather, after the destructor finishes? I suppose it might be valid if you construct another instance at the same place with placement new before doing anything else with the instance and before it goes out of scope. – UncleBens Oct 28 at 16:49
And these operations include the dtor being automatically invoked at the end of the scope. – sbi Oct 28 at 17:06
@UncleBens: no, as soon as the destructor starts you should consider your object no longer exists... try using virtual functions from a destructor of a base class that actually use a heap-allocated memory of the derived class... see what I mean :) ? – Matthieu M. Oct 28 at 18:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.