Skip to main content
GameDev.net gamedev.net
🔒 Locked

C++ how to avoid calling destructor

Started by Aroidzap Jan 29, 2013 at 6:43 PM 31 replies 13.8k views
Original Post
Aroidzap
Aroidzap

Hi, I've got code like this :


std::vector<some_class> array;

void pushback_function()
{
    some_class temp;
    array.push_back(temp);
}

Is it somehow possible to avoid calling destructor of temp

alvaro
alvaro
Not really. Why don't you want the destructor called?

If you are trying to save the copy, you can look into C++11's move semantics.
frob
frob

Every object that is created needs to be destroyed. There is a very tiny exception to the rule and that is if you are basically writing your own memory manager. But I doubt that is the case here.

What are you trying to accomplish? Why don't you want your destructor to get called?

Aroidzap
Aroidzap
ok... so... is it possible to push_back pointer to "temp" (create temp using some_class *temp = new some_class;) in array?
kop0113
kop0113
Perhaps push the memory contained within an std::tr1::shared_ptr onto the vector but set it's deleter function to a function that does nothing.


array.push(std::tr1::shared_ptr<some_class>(new temp(), std::tr1::bind(std::tr1::placeholders::_1, nullFunc));

...

void nullFunc(some_class* unused)
{
  // do nothing...
}

http://tinyurl.com/shewonyay - Thanks so much for those who voted on my GF's Competition Cosplay Entry for Cosplayzine. She won! I owe you all beers :)

Mutiny - Open-source C++ Unity re-implementation.
Aroidzap
Aroidzap

I think I will try to solve my problem another way... I don't want to make it messy. But thanks for help ;)

kop0113
kop0113
Whoever decreased my rep, I am hoping you did so for the nullFunc stuff rather than the std::tr1::shared_ptr because although that looks messy, it is pretty standard C++.
http://tinyurl.com/shewonyay - Thanks so much for those who voted on my GF's Competition Cosplay Entry for Cosplayzine. She won! I owe you all beers :)

Mutiny - Open-source C++ Unity re-implementation.
alvaro
alvaro
There are many things you could do, like having a container of pointers, a container of smart pointers or a Boost pointer container. But unless we know what you are trying to do and why it is a problem that the destructor is being called, we can't really give you much advice.
alvaro
alvaro

Whoever decreased my rep, I am hoping you did so for the nullFunc stuff rather than the std::tr1::shared_ptr because although that looks messy, it is pretty standard C++.

It's probably because of the misspelled "its". smile.png
swiftcoder
swiftcoder

ok... so... is it possible to push_back pointer to "temp" (create temp using some_class *temp = new some_class;) in array?

Sure, you can create a std::vector, and then push pointers into it instead. Just remember to delete each one when you are actually done with it.

You can also use std::shared_ptr, or (from C++11 onwards) std::unique_ptr, to avoid having to remember to delete the objects in the end.

But I'm curious: how much work is this destructor doing, that you are so adamant to avoid calling it? In general, a copyable class should do very little work in its destructor (and if your class isn't meant to be copyable, well, then you need to take the pointer approach to start with).

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]
rip-off
rip-off

You could emplace_back(), if your compiler(s) support it (C++11 once again).

ApochPiQ
ApochPiQ

You could do this, but I don't recommend it:


void pushback_function()
{
    char storage[sizeof(some_class)];
    some_class *temp = new(storage) some_class;
    array.push_back(*temp);
}


That won't suppress the some_class destructor being called when array is deallocated or otherwise shuffles elements.
Ravyne
Ravyne
If your element is default constructed, you can just resize the vector to its size plus one. vector::resize() creates default constructed objects, you can them modify the member through accessing it from the vector if necessary.

In most cases, this will not cause a re-allocation of memory backing the vector, and in cases where it does it was unavoidable anyhow. However, if you will be constructing several of these objects at once, you can hit them all at once by resizing to the size of the array plus the required number of objects.

Also, be wary of any pointers you're holding, they become invalid if the memory backing the vector is re-allocated -- but again, this would be true of the standard solution. Just something to be aware of.

[Edit] -- don't you hate it when you read responses, and in your head that changes the nature of the question? Anyhow, if your ends are to eliminate the redundant initialization, copy of, and deconstruction of temp just to put it in vector, then what I suggested is useful. If your ends are different, well, you should probably explain or find different ends, because they're opaque to me.
throw table_exception("(? ???)? ? ???");
SiCrane
SiCrane

That won't suppress the some_class destructor being called when array is deallocated or otherwise shuffles elements.

I'm not sure that's an issue in this case, as the OP only specified suppressing the destructor of the temp object. One problem with the locally allocated char array is that it may not have the correct alignment for some_class. A similar example from the C++98 standard had to be changed in the C++03 standard to use dynamic allocation of the char array so that alignment requirements were met.
ApochPiQ
ApochPiQ
Ah, I see.

It's still a bad idea of some_class does any allocations or controls any resources, obviously, as they will leak. I suspect if some_class has a nontrivial destructor this is likely to be the case.
Cornstalks
Cornstalks

Perhaps push the memory contained within an std::tr1::shared_ptr onto the vector but set it's deleter function to a function that does nothing.

array.push(std::tr1::shared_ptr<some_class>(new temp(), std::tr1::bind(std::tr1::placeholders::_1, nullFunc));

...

void nullFunc(some_class* unused)
{
  // do nothing...
}


That's just... horrible (plus it doesn't even compile). Why would you even recommend that? I mean, what's the point of even using shared_ptr here? It accomplishes nothing. Might as well use a raw pointer and never call delete on it... You're leaking memory here.

I'd just recommend (properly) using smart pointers (that is, just a plain old std::shared_ptr temp(new some_class())).

Edit: I actually like Ravyne's idea. You could do:

array.resize(array.size() + 1);
some_class& back = array.back(); // You only need to do this if you want to edit the last element
kop0113
kop0113
It should compile, I would be interested in knowing why it doesnt for you.
On g++ I need tr1/memory and tr1/functional headers included.

As for the OP, he is the one that didn't want to call the constructor. I didn't question it lol (ironically in fear of losing rep haha). The "some_class" might add itself to a cache pool on creation and so not want to be deleted once the std::vector goes out of scope (i.e how Irrlicht handles meshes etc...)

As for (properly) using smart pointers, once you get this to compile, it works really nicely for C libraries (with the appropriate deleter func added) without needing to wrap loads of stuff in C++ classes. Though the problem in this thread isnt perhaps the best use-case for it.
http://tinyurl.com/shewonyay - Thanks so much for those who voted on my GF's Competition Cosplay Entry for Cosplayzine. She won! I owe you all beers :)

Mutiny - Open-source C++ Unity re-implementation.
swiftcoder
swiftcoder


As for (properly) using smart pointers, once you get this to compile, it works really nicely for C libraries without needing to wrap loads of stuff in C++ classes.

What about it "works nicely"? From where I'm standing, you just tried to spin guaranteed memory leaks as a "feature"...

The OP said he wanted to avoid calling the destructor on the temp object, not altogether.

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]
kop0113
kop0113
Yeah you read it whilst I was still fixing my post.

Internet is too slow and these forums are a tad broken but I finally got my post submitted.

I am off for a beer now lol.
http://tinyurl.com/shewonyay - Thanks so much for those who voted on my GF's Competition Cosplay Entry for Cosplayzine. She won! I owe you all beers :)

Mutiny - Open-source C++ Unity re-implementation.

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.