What is the use of having destructor as private? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T08:50:08Zhttp://stackoverflow.com/feeds/question/631783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private8What is the use of having destructor as private?yesraaj2009-03-10T18:59:52Z2009-03-11T14:26:36Z
<p>What is the use of having destructor as private?</p>
http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private/631791#63179121Answer by Paul Tomblin for What is the use of having destructor as private?Paul Tomblin2009-03-10T19:02:44Z2009-03-11T14:26:36Z<p>If you're doing some sort of reference counting thing, you can have the object (or manager that has been "friend"ed) responsible for counting the number of references to itself and delete it when the number hits zero. A private dtor would prevent anybody else from deleting it when there were still references to it.</p>
http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private/631792#63179213Answer by Michael for What is the use of having destructor as private?Michael2009-03-10T19:03:14Z2009-03-10T19:03:14Z<p>When you do not want users to access the destructor, i.e., you want the object to only be destroyed through other means.</p>
<p><a href="http://blogs.msdn.com/larryosterman/archive/2005/07/01/434684.aspx" rel="nofollow">http://blogs.msdn.com/larryosterman/archive/2005/07/01/434684.aspx</a> gives an example, where the object is reference counted and should only be destroyed by the object itself when count goes to zero.</p>
http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private/631796#6317965Answer by FigBug for What is the use of having destructor as private?FigBug2009-03-10T19:03:49Z2009-03-10T19:03:49Z<p>The class can only be deleted by itself. Useful if you are creating some try of reference counted object. Then only the release method can delete the object, possibly helping you avoid errors.</p>
http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private/631807#6318077Answer by dirkgently for What is the use of having destructor as private?dirkgently2009-03-10T19:06:44Z2009-03-11T09:50:15Z<p>Such an object can never be created on the stack. Always on the heap. And deletion has to be done via a friend or a member. A product may use a single Object hierarchy and a custom memory-manager -- such scenarios may use a private dtor.</p>
<pre><code>#include <iostream>
class a {
~a() {}
friend void delete_a(a* p);
};
void delete_a(a* p) {
delete p;
}
int main()
{
a *p = new a;
delete_a(p);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private/631814#6318140Answer by Jared Oberhaus for What is the use of having destructor as private?Jared Oberhaus2009-03-10T19:09:11Z2009-03-10T19:09:11Z<p>It might be a way to deal with the problem in Windows where each module can use a different heap, such as the <a href="http://msdn.microsoft.com/en-us/library/19f56tw3%28VS.71%29.aspx" rel="nofollow">Debug</a> heap. If that problem isn't handled correctly <a href="http://blogs.msdn.com/oldnewthing/archive/2006/09/15/755966.aspx" rel="nofollow">bad</a> <a href="http://stackoverflow.com/questions/443147/c-mix-new-delete-between-libs">things</a> can happen.</p>
http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private/632092#6320921Answer by Mykola Golubyev for What is the use of having destructor as private?Mykola Golubyev2009-03-10T20:17:33Z2009-03-11T14:08:50Z<p>I know you were asking about private destructor. Here is how I use protected ones. The idea is you don't want to delete main class through the pointer to class that adds extra functionality to the main.<br>
In the example below I don't want GuiWindow to be deleted through a HandlerHolder pointer. </p>
<pre><code>class Handler
{
public:
virtual void onClose() = 0;
protected:
virtual ~Handler();
};
class HandlerHolder
{
public:
void setHandler( Handler* );
Handler* getHandler() const;
protected:
~HandlerHolder(){}
private:
Handler* handler_;
};
class GuiWindow : public HandlerHolder
{
public:
void finish()
{
getHandler()->onClose();
}
virtual ~GuiWindow(){}
};
</code></pre>
http://stackoverflow.com/questions/631783/what-is-the-use-of-having-destructor-as-private/632973#6329733Answer by Vinay for What is the use of having destructor as private?Vinay2009-03-11T01:14:16Z2009-03-11T01:14:16Z<p>COM uses this strategy for deleting the instance. COM makes the destructor private and provides an interface for deleting the instance.</p>
<p>Here is an example of what a Release method would look like.</p>
<pre><code>int MyRefCountedObject::Release()
{
_refCount--;
if ( 0 == _refCount )
{
delete this;
return 0;
}
return _refCount;
}
</code></pre>
<p>ATL COM objects are a prime example of this pattern. </p>