Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an object that I allocate using placement new. When the object is not needed anymore I use its destructor explicitly, then take care of the memory myself, as described in various sources on the web.

It is not clear to me however if the compiler may generate any additional 'magic in the background' for the destructor call, other than just generating instructions for what's inside the destructor. The actual question is: Would anything prevent me from using 'custom destructors' instead of the regular (~ syntax) destructors in the case of 'placement-new'? Simple class methods that contain all the usual destructor code but may additionally take arguments.

Here is an example:

class FooBar {
  FooBar() { ... }
  ...
  void myCustomDestructor(int withArguments) { ... }
  ...
};

int main() {
  ...
  FooBar* obj = new (someAddress) FooBar();
  ...
  obj->~FooBar();  // <- You're supposed to do this.
  obj->myCustomDestructor(5);  // <- But can you do this instead?
  ...
  // Then do whatever with the memory at someAddress...
}


Any disadvantages going with custom destructors?

share|improve this question
I don't think you have a choice there. If the destructor has side effects, then it's UB to not call it before you reuse or free the memory, no matter what you do in your own function. And if the destructor has no effects, then your own function isn't really a "destructor" and just another function. – Kerrek SB Feb 13 at 0:54
Summary: Yes, sometimes there is compiler magic in destructors. Namely, it calls the destructors of all members and parent objects. – Mooing Duck Feb 13 at 1:28
@KerrekSB That was actually my question: If destructors are really just class methods. I am aware myCustomDestructor() does not get called through the usual operator delete nor if the object is allocated locally and goes out of scope. But that discussion would be already out of the question scope. – Rafael Spring Feb 13 at 1:47
@MooingDuck you're right, members would not get destructed automatically. In the given example, just assume there are no members with nontrivial destructors. – Rafael Spring Feb 13 at 2:30
1  
What exactly does your custom destructor do? What's stopping you from simply calling it, and then calling the normal destructor? If the members all have trivial destructors, it costs you nothing and you get no undefined behavior. – Benjamin Lindley Feb 13 at 14:01
show 1 more comment

3 Answers

While this is technically be possible, I recommend against it.

Destructors are there for a reason: The compiler takes care of calling the destructors of all base classes. If you use your custom destructor, you need to take care of that yourself (and are likely to forget it somewhere).

Additionally, using a different method than the default destructor will be all but obvious to anyone reading your code.

What advantages do you expect from using a custom destructor? I don't see any.

share|improve this answer
A custom destructor can take arguments. If a normal destructor needs arguments, you have to add them as permanent members of the class, which is absurd as a solution. (And yes, I have run into this situation in real code) – Mooing Duck Feb 13 at 1:30
If you want a specific example, I wrote wrappers for JNI objects, but had to have a pointer to the JNI "environment" to release the objects. – Mooing Duck Feb 13 at 1:35
The advantage would be being able to use parameters for the destructor. – Rafael Spring Feb 13 at 2:01
What about Exception handling? The compiler doesn't know about the parameters you want to pass to the object destructor. This would lead to unmaintainable code. If you need a seperate release-method with parameters, provide one and call it before calling the actual destructor. – TcShadowWalker Feb 14 at 13:15

The "extra magic" is that the object ceases to exist only after the destructor is called. So you can't reuse the memory after calling myCustomDestructor since the object "still exists", well, at least not without undefined behavior.

One solution is to make a private destructor and do something like this:

class FooBar {
  public:
    FooBar() { ... }
    static void destruct(FooBar& foobar, int withArguments) {
       foobar.myCustomDestructor(withArguments);
       foobar.~FooBar();
    }
  private:
    void myCustomDestructor(int withArguments) { ... }
    ~FooBar() {}
};

int main() {
  ...
  FooBar* obj = new (someAddress) FooBar();

  FooBar::destruct(*obj, 5);

  // Then do whatever with the memory at someAddress...
}

This calls both the custom "destructor" and the actual destructor, thus telling the compiler the object now ceases to exist.

share|improve this answer
Well that's clever. but confusing. Since you can't have a local FooBar, nor can you ever call delete on it. – Mooing Duck Feb 13 at 1:33
Sure an object behaves weird if I write over its storage. But it wouldn't affect anything else than the object or cause any other undefined behavior, would it? Hence I don't understand the term "ceases to exist". – Rafael Spring Feb 13 at 1:42
@RafaelSpring It's definitely undefined behavior, meaning anything could happen, but you're probably right that in this case nothing will go wrong. Still, I wouldn't risk it. – Pubby Feb 13 at 1:48

No, you can't do that without undefined behavior. I would just do this instead:

void FooBar::prepareForCustomDestruction(int arguments)
{
    do_custom_destruction = true;
    custom_destructor_arguments = arguments;
}

FooBar::~FooBar()
{
    if (do_custom_destruction)
    {
        // custom destruction
    }
    else
    {
        // normal destruction
    }
}

Then if you want to simulate calling a custom destructor, just call prepareForCustomDestruction first.

obj->prepareForCustomDestuction(5);
obj->~FooBar();
share|improve this answer
Or, since custom_destructor_arguments would have to be a member, initialize them in the constructor like normal members. (maybe with a setter if needed) Then you also have no need of do_custom_destruction nor the if. – Mooing Duck Feb 13 at 1:31
I thought about this solution at first but decided against it since it would necessitate at least one other class member which is prohibitive in memory for my use case. – Rafael Spring Feb 13 at 1:33
@MooingDuck: My assumption here is that the decision of whether or not to do the custom destruction is not made until sometime later in the object's lifetime. – Benjamin Lindley Feb 13 at 1:34

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.