C++ polymorphism not supported for pointer-to-pointer - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T13:43:53Zhttp://stackoverflow.com/feeds/question/736982http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer1C++ polymorphism not supported for pointer-to-pointerTo1ne2009-04-10T07:39:45Z2009-04-10T13:59:18Z
<p>I'm searching for a proper way to clean my pointers.
Here the example code:</p>
<pre><code>class Parent {
protected:
int m_Var;
public:
Parent() : m_Var(0) {}
virtual ~Parent() {}
void PubFunc();
};
class Child : public Parent {
protected:
bool m_Bool;
public:
Child() : m_Bool(false) {}
virtual ~Child() {}
void ChildFunc();
};
void RemoveObj(Parent **ppObj)
{
*ppObj->PubFunc();
delete *ppObj;
ppObj = NULL;
}
int main()
{
Parent* pPObj = NULL;
Child* pCObj = NULL;
pPObj = new Parent();
pCObj = new Child();
RemoveObj(&pPObj);
RemoveObj(&pCObj); // This is line 33
return 1;
}
</code></pre>
<p>But the compiler gives error:</p>
<pre><code>classes.cpp:33: error: invalid conversion from ‘Child**’ to ‘Parent**’
classes.cpp:33: error: initializing argument 1 of ‘void RemoveObj(Parent**)’
</code></pre>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/736994#73699411Answer by nusi for C++ polymorphism not supported for pointer-to-pointernusi2009-04-10T07:49:05Z2009-04-10T07:49:05Z<p>There are soo many ways to handle memory correctly. </p>
<p>The one close to your example would be:</p>
<pre><code>template <typename T>
RemoveObj(T **p)
{
if (p == NULL) return;
delete *p;
*p = NULL;
}
</code></pre>
<p>Additionally you might want to use std::auto_ptr instead. It would look like:</p>
<pre><code>int main()
{
std::auto_ptr<Parent*> pPObj(new Parent);
std::auto_ptr<Child*> pCObj(new Child);
// no deletes needed anymore
</code></pre>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737034#7370341Answer by Angus for C++ polymorphism not supported for pointer-to-pointerAngus2009-04-10T08:16:08Z2009-04-10T08:16:08Z<p>You can find some useful information from the book < C++ common knowledge> Item 8. Pointers to Pointers.</p>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737039#7370393Answer by dirkgently for C++ polymorphism not supported for pointer-to-pointerdirkgently2009-04-10T08:19:47Z2009-04-10T08:19:47Z<p>You don't need a wrapper for delete, keep it simple:</p>
<pre><code>int main()
{
Parent* pPObj = NULL;
Child* pCObj = NULL;
pPObj = new Parent();
pCObj = new Child();
delete pPObj;
delete pCObj; // This is line 33
return 1;
}
</code></pre>
<p>And remember you will run into issues deleting array type objects with your <code>RemoveObj</code> (since you are always using a scalar <code>delete</code>). An alternative is of course to pass a flag around to indicate you want <code>delete []</code>. But as I said: KISS.</p>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737139#7371393Answer by yossi1981 for C++ polymorphism not supported for pointer-to-pointeryossi19812009-04-10T09:20:36Z2009-04-10T09:20:36Z<p>To put it simple :</p>
<p>Child is a subclass of Parent so that means that Child* can be substituted with Parent*</p>
<p>BUT</p>
<p>Child* is NOT a subclass of Parent* so that means that Child** can't be substituted with Parent**</p>
<p>"Child" and "Child*" are not the same types.</p>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737163#7371632Answer by dribeas for C++ polymorphism not supported for pointer-to-pointerdribeas2009-04-10T09:35:24Z2009-04-10T09:35:24Z<p>If your problem is dealing with memory and resources, the best advice would be to forget your approach completely and use smart pointers. <em>std::auto_ptr</em> or <em>boost::shared_ptr</em> would be a start point.</p>
<p>If you hold all your heap allocated resources with smart pointers your code will be more robust.</p>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737194#7371942Answer by Earwicker for C++ polymorphism not supported for pointer-to-pointerEarwicker2009-04-10T09:52:40Z2009-04-10T09:52:40Z<p>What you need to do is nullify all the pointers to the object you just deleted. The idea of pointers is that there will be more than one pointer storing the address of the same object. If not, there is little reason to use a bare pointer, and so the pattern you're trying to capture is not very useful - but you are far from the first person to try this. As other answers have mentioned, the only way to deal with pointers is to carefully control access to them.</p>
<p>The title of your question is absolutely correct! There's a good reason for it. A pointer identifies a location that stores an object of a specific type. A pointer to a pointer gives you the ability to change what object a pointer points to.</p>
<pre><code>void Foo(Parent **pp)
{
*pp = new OtherChild();
}
</code></pre>
<p>Your <code>Child</code> class derives from <code>Parent</code>, and so does my <code>OtherChild</code> class. Suppose the compiler allowed you to do this:</p>
<pre><code>Child *c = 0;
Foo(&c);
</code></pre>
<p>You expected that to work, but if it had, then we would now have a <code>Child</code> pointer <code>c</code> that in fact pointers to an instance of <code>OtherChild</code>. Who says those two types are compatible?</p>
<p>Again, this is a very frequent misunderstanding - it crops up repeatedly here for other languages, especially with regard to <code>List<Parent></code> and <code>List<Child></code> in C#.</p>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737345#7373450Answer by To1ne for C++ polymorphism not supported for pointer-to-pointerTo1ne2009-04-10T11:14:51Z2009-04-10T11:14:51Z<p>Probably the most simple solution I have found:</p>
<pre><code>#define __REMOVE_OBJ(pObj) RemoveObj(pObj); pObj = NULL;
</code></pre>
<p>And just call this one:</p>
<pre><code> __REMOVE_OBJ(pPObj);
__REMOVE_OBJ(pCObj);
</code></pre>
<p>But I don't really like it myself...</p>
http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737685#7376850Answer by Greg for C++ polymorphism not supported for pointer-to-pointerGreg2009-04-10T13:59:18Z2009-04-10T13:59:18Z<p>From discussion on <a href="http://stackoverflow.com/questions/441306/make-sharedptr-not-use-delete/441810#441810">make shared_ptr not use delete</a></p>
<p>Shared pointer will ensure you cleanup when you should and that you don't access something that is destroyed. Further you can specialise and provide an alternate destruction method.</p>
<pre><code>boost::shared_ptr<T> ptr( new T, std::mem_fun_ref(&T::deleteMe) );
</code></pre>