In my initial basic tests it is perfectly safe to do so. However, it has struck me that attempting to manipulate this later in a function that deletes this could be a runtime error. Is this true, and is it normally safe to delete this? or are there only certain cases wherein it is safe?
|
1
|
|
||||
|
|
|
It is usually found in reference-counted classes that, when the ref-count is decremented to 0, the
Also, |
||||
|
|
|
It's safe to delete "this" as long as it's essentially the last operation in the method. In fact several professional level APIs do so (see ATL's CComObject implementation for an example). The only danger is attempting to access any other member data after calling "delete this". This is certainly unsafe. |
||
|
|
|
|
As stated by others, delete this is a valid idiom but for it to be safe you have to ensure that the object is never instantiated on the stack. One way to do this is to make both the constructor and the destructor private and enforce object creation through a class factory function which creates the the object on the heap and returns a pointer to it. The class factory can be a static member function or a friend function. Cleanup can then be done through a Delete() method on the object that does the "delete this". COM objects basically work this way except that in addition they are reference counted with the "delete this" occurring when the reference count is decremented to zero. |
||
|
|
|
|
but dont do it in the destructor ! |
||||
|
|
|
Delete this is perfectly legal as others have already mentioned. It is risky for one additional reason that hasn't been mentioned yet - you are assuming that the object has been allocated on the heap. This can be difficult to guarantee, although in the case of reference counting implementations isn't generally a problem. |
||||||||
|
|
|
Yes. It should be perfectly fine. "This" is just a pointer. Any pointer will do for delete. The information on how to delete an object is contained in the heap records. This is how IUnknown::Release() is usually implemented in COM objects. |
||
|
|
|
|
Read for a similiar discussion. Your understanding is right in that it does work, is needed, and can be dangerous since you can't access this afterwards. |
||
|
|
|
|
delete this can cause an issue when you have subclasses of the object you are deleting. Remember construction starts from top down and deletion starts from bottom up. So if delete this is in the middle of the hierarchy you basically lost all the objects below this particular class. delete this comes very handy when you are implementing a reference counted object, an example of which is the COM classes. |
||||
|
|
|
Exact Duplicate click here. I had asked the same question. |
||||||
|
|
|
Legal Yes |
||
|
|
