C++ polymorphism not supported for pointer-to-pointer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T13:43:53Z http://stackoverflow.com/feeds/question/736982 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer 1 C++ polymorphism not supported for pointer-to-pointer To1ne 2009-04-10T07:39:45Z 2009-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-&gt;PubFunc(); delete *ppObj; ppObj = NULL; } int main() { Parent* pPObj = NULL; Child* pCObj = NULL; pPObj = new Parent(); pCObj = new Child(); RemoveObj(&amp;pPObj); RemoveObj(&amp;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#736994 11 Answer by nusi for C++ polymorphism not supported for pointer-to-pointer nusi 2009-04-10T07:49:05Z 2009-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 &lt;typename T&gt; 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&lt;Parent*&gt; pPObj(new Parent); std::auto_ptr&lt;Child*&gt; pCObj(new Child); // no deletes needed anymore </code></pre> http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737034#737034 1 Answer by Angus for C++ polymorphism not supported for pointer-to-pointer Angus 2009-04-10T08:16:08Z 2009-04-10T08:16:08Z <p>You can find some useful information from the book &lt; C++ common knowledge> Item 8. Pointers to Pointers.</p> http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737039#737039 3 Answer by dirkgently for C++ polymorphism not supported for pointer-to-pointer dirkgently 2009-04-10T08:19:47Z 2009-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#737139 3 Answer by yossi1981 for C++ polymorphism not supported for pointer-to-pointer yossi1981 2009-04-10T09:20:36Z 2009-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#737163 2 Answer by dribeas for C++ polymorphism not supported for pointer-to-pointer dribeas 2009-04-10T09:35:24Z 2009-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#737194 2 Answer by Earwicker for C++ polymorphism not supported for pointer-to-pointer Earwicker 2009-04-10T09:52:40Z 2009-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(&amp;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&lt;Parent&gt;</code> and <code>List&lt;Child&gt;</code> in C#.</p> http://stackoverflow.com/questions/736982/c-polymorphism-not-supported-for-pointer-to-pointer/737345#737345 0 Answer by To1ne for C++ polymorphism not supported for pointer-to-pointer To1ne 2009-04-10T11:14:51Z 2009-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#737685 0 Answer by Greg for C++ polymorphism not supported for pointer-to-pointer Greg 2009-04-10T13:59:18Z 2009-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&lt;T&gt; ptr( new T, std::mem_fun_ref(&amp;T::deleteMe) ); </code></pre>