vote up 0 vote down star

I have many boost::shared_ptr<MyClass> objects, and at some point I intentionally want to delete some of them to free some memory. (I know at that point that I will never need the pointed-to MyClass objects anymore.) How can I do that?

I guess you can't just call delete() with the raw pointer that I get with get().

I've seen a function get_deleter(shared_ptr<T> const & p) in boost::shared_ptr, but I'm not sure how to use it, and also it says experimental right next to it. (I think I have Boost 1.38.)

EDIT: Maybe just assign a new empty boost::shared_ptr to the variable? That should throw away the old value and delete it.

flag

61% accept rate
1  
NOOOOO: Don't call delete after a call to get(). The smart pointer still has a copy and will call delete when it releases the object. – Martin York Mar 7 at 10:17

4 Answers

vote up 10 vote down

You just do

ptr.reset();

See the shared_ptr manual. It is equivalent to

shared_ptr<T>().swap(ptr)

You call reset on every smart pointer that should not reference the object anymore. The last such reset (or any other action that causes the reference count drop to zero, actually) will cause the object to be free'ed using the deleter automatically.

Maybe you are interested in the Smart Pointer Programming Techniques. It has an entry about delayed deallocation.

link|flag
1  
For completeness, can I suggest mentioning that this needs to be done for all shared_ptr objects that point at the pointee of interest? – j_random_hacker Mar 7 at 3:56
vote up 4 vote down

The whole point of boost::shared_ptr<T> is that the pointee object will be deleted exactly at the moment when no shared_ptr<T>s point at it -- that is, when the last shared_ptr<T> pointing at this object goes out of scope or is reassigned to point to a different object. So, all you have to do to delete an object is make sure there are no shared_ptr<T>s pointing at it. E.g. if you only have a single shared_ptr<T> called p pointing at an object, either let it fall out of scope, or call p.reset() (equivalent to p = NULL for a plain pointer), or assign it to point at something else.

If you have two shared_ptr<T>s pointing at the object, you'll need to reassign both of them.

EDIT: Thanks to dehmann for pointing out that p = NULL; is not actually valid code for a shared_ptr<T>... :)

link|flag
1  
Sounds good, but one thing: You can't write p=NULL, because p is a shared_ptr, not a pointer. – dehmann Mar 7 at 4:00
Yes, for a related question on how to use NULL when using shared_ptrs, see stackoverflow.com/questions/621220/… – m-sharp Mar 7 at 4:15
@dehmann: Whoops, you're absolutely right... – j_random_hacker Mar 7 at 4:35
@m-sharp: Thanks for the link. I added an answer on that thread that allows a natural "p = nullPtr;" syntax to be used for any shared_ptr<T> type. – j_random_hacker Mar 7 at 4:36
vote up 0 vote down

What you want to do is return weak references using boost::weak_ptr that can be converted to a shared_ptr when needed. This can allow you to control the lifetime of the object in the shared_ptr and those that want to access it can hold onto the weak_ptr and try to convert to a shared_ptr. If that convert fails, then they can re-query and bring the object back into memory.

link|flag
vote up 0 vote down

If you want to be able to intentionally delete objects (I do all the time) then you have to use single ownership. You have been lured into using shared_ptr when it is not appropriate to your design.

link|flag

Your Answer

Get an OpenID
or

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