vote up 15 vote down star
1

Looking for an answer for C# and C++. (in C#, replace 'destructor' with 'finalizer')

flag

72% accept rate
I think the thing to do here is set up a throw-away project (or two: one per langauge) and do a check to find out. – Joel Coehoorn Oct 9 '08 at 19:03
The joy of compiling from the command-line is you don't need to set up a project. Just load up a file in a text editor, compile very easily, and run :) – Jon Skeet Oct 9 '08 at 19:08
@loyc-etc, C++ and C# are pretty different in their semantics. This is really two separate questions. – Onorio Catenacci Oct 9 '08 at 19:39

10 Answers

vote up 25 vote down check

Preamble: Herb Sutter has a great article on the subject:

http://herbsutter.wordpress.com/2008/07/25/constructor-exceptions-in-c-c-and-java/

C++ : Yes and No

While an object destructor won't be called if its constructor throws (the object "never existed"), the destructors of its internal objects could be called.

As a summary, every internal parts of the object (i.e. member objects) will have their destructors called in the reverse order of their construction. Every thing built inside the constructor won't have its destructor called unless RAII is used in some way.

For example:

struct Class
{
   Class() ;
   ~Class() ;

   Thing *    m_pThing ;
   Object     m_aObject ;
   Gizmo *    m_pGizmo ;
   Data       m_aData ;
}

Class::Class()
{
   this->m_pThing = new Thing() ;
   this->m_pGizmo = new Gizmo() ;
}

The order of creation will be:

  1. m_aObject will have its constructor called.
  2. m_aData will have its constructor called.
  3. Class constructor is called
  4. Inside Class constructor, m_pThing will have its new and then constructor called.
  5. Inside Class constructor, m_pGizmo will have its new and then constructor called.

Let's say we are using the following code:

Class pClass = new Class() ;

Some possible cases:

  • Should m_aData throw at construction, m_aObject will have its destructor called. Then, the memory allocated by "new Class" is deallocated.

  • Should m_pThing throw at new Thing (out of memory), m_aData, and then m_aObject will have their destructors called. Then, the memory allocated by new Class is deallocated.

  • Should m_pThing throw at construction, the memory allocated by "new Thing" will be deallocated. Then m_aData, and then m_aObject will have their destructors called. Then, the memory allocated by new Class is deallocated.

  • Should m_pGizmo throw at construction, the memory allocated by "new Gizmo" will be deallocated. Then m_aData, and then m_aObject will have their destructors called. Then, the memory allocated by new Class is deallocated. Note that m_pThing leaked

If you want to offer the Basic Exception Guarantee, you must not leak, even in the constructor. Thus, you'll have to write this this way (using STL, or even Boost):

struct Class
{
   Class() ;
   ~Class() ;

   std::auto_ptr<Thing>   m_pThing ;
   Object                 m_aObject ;
   std::auto_ptr<Gizmo>   m_pGizmo ;
   Data                   m_aData ;
}

Class::Class()
   : m_pThing(new Thing())
   , m_pGizmo(new Gizmo())
{
}

Or even:

Class::Class()
{
   this->m_pThing.reset(new Thing()) ;
   this->m_pGizmo.reset(new Gizmo()) ;
}

if you want/need to create those objects inside the constructor.

This way, no matter where the constructor throws, nothing will be leaked.

link|flag
Another scenario, should m_pGizmo throw at new, m_pThing still leaks right? Thanks.. – krebstar Feb 25 at 4:29
No, because m_pThing is a smart pointer. If m_pThing did construct correctly, its destructor will be called if m_pGizmo throws. – paercebal Jul 29 at 23:10
Herb Sutter's article is wrong for C# and Java. The finalizers appear to be run even if the constructors throw an exception. – David Leonard Sep 15 at 0:53
@David Leonard: You're wrong for C#. I'm not a C# lawyer, but with some Googling, I found the following article which says the construction of a C# object is OUTSIDE the implicit try/finally of the "using" statement. Thus, the Dispose method is NOT called. See: codeproject.com/KB/cs/… and msdn.microsoft.com/en-us/library/… – paercebal Sep 16 at 18:46
@David Leonard: You're ALMOST wrong for Java, as Herb Sutter's article places the construction of the object outside the try/finally, doing manually in Java what is automated in C#. I guess you could declare the reference outside, and write the new inside the try/finally, but there must be some reason why it is not done. A little research, though, will reveal that one should avoid using finalize() in Java because its execution can't be relied upon. I am not a Java lawyer, so I have no fast answer. – paercebal Sep 16 at 19:02
vote up 29 vote down

It does for C# (see code below) but not for C++.

using System;

class Test
{
    Test()
    {
        throw new Exception();
    }

    ~Test()
    {
        Console.WriteLine("Finalized");
    }

    static void Main()
    {
        try
        {
            new Test();
        }
        catch {}
        GC.Collect();
        GC.WaitForPendingFinalizers();
    }
}

This prints "Finalized"

link|flag
This may be true for C#, but not C++. – Matt Dillard Oct 9 '08 at 19:15
True. Edited appropriately. – Jon Skeet Oct 9 '08 at 19:15
I thought ~Test was a finalizer in C#, not a destructor? Ah I see the ~ syntax is sugar for setting up a finalizer. In the case that my ctor could throw, I expect I'd want to manually add the finalizer as the last step of the ctor to avoid cleaning up non-existent messes. – Logan Capaldo Mar 14 at 22:05
@Logan: It depends on which version of the C# spec you read as to whether they call it "finalizer" or "destructor". – Jon Skeet Mar 14 at 23:03
vote up 28 vote down

Questions like this one honestly surprise me.

You have a compiler - find out for yourself.

Not to be mean, but this is exactly the kind of question where your best friend is not the internet, but your compiler.

The only reason I'd even think of asking the internet this kind of question is if I believed that different compilers behaved differently.

link|flag
1  
I teach a programming course, and this mindset is popular -- where in the book or the internet is the exact code I need to solve this problem? The idea of experimenting and trying things out is foreign. Maybe Google is making us stupid. theatlantic.com/doc/200807/google – JohnMcG Oct 9 '08 at 19:24
Err... Note that your viewpoint crumble to useless dust when your "experiment" falls on one compiler bug/peculiarity. The C++ standard have a very clear definition of what is supposed to happen when an exception leaves a constructor. – paercebal Oct 9 '08 at 19:30
Matt, i can agree with you partially. The other part of me is glad that this question has been asked and now i know the answer. I learned something new from it, not that i need it but it may come in handy, so i'm glad these kinds of questions are asked ... HERE! :) – steffenj Oct 9 '08 at 19:50
Of course, practically this entire site is premised on the idea that people would rather ask a question, then search on MSDN... where half the answers can be found. I think the better attitude is to be helpful to someone who is asking an honest answer, or not respond. That's the point of SO. -1 – Nick Oct 9 '08 at 20:05
Yeah its true that you can find out easily but this is one question I saw and wondered what the answer was. Now someone has asked and now someone has answered I know. The power of SO is that someone will ask something I may be interested in knowing but I've never thought of asking. – John Nolan Oct 9 '08 at 20:12
show 6 more comments
vote up 6 vote down

The destructor of the class still being constructed is not called, because the object was never fully constructed.

However, the destructor of its base class (if any) IS called, because the object was constructed as far as being a base class object.

Moreover, any member variables will have their destructors called too (as others have noted).

NB: this applies to C++

link|flag
"destructors of all base classes", to be pedantic. The standard has a whole lot of words how it works in MI when one ctor throws. – MSalters Oct 10 '08 at 14:32
vote up 2 vote down

In C++, the answer is no - object's destructor is not called.

However, the destructors of any member data on the object will be called, unless the exception was thrown while constructing one of them.

Member data in C++ is initialized (i.e. constructed) in the same order as it is declared, so when the constructor throws, all member data that has been initialized - either explicitly in the Member Initialization List (MIL) or otherwise - will be torn down again in reverse order.

link|flag
But it should be noted that a raw pointer member which may have been initialized using new will not be automatically deleted. – Michael Burr Oct 9 '08 at 22:00
He's quite correct actually. If you have a T* member initialized with new T, then you actually have two objects: the new'ed T and the T* itself. Like an int, a T* has no destructor. Hence, when the T* member is deleted, the T pointed to is not. – MSalters Oct 10 '08 at 14:38
Agreed. The task of deleting that pointer normally belongs in the destructor, and since the destructor is not called, there's a memory leak (unless a try/catch is written within the constructor to take care of this). The safer alternative is to use auto pointers or smart pointers. – Matt Dillard Oct 10 '08 at 18:02
vote up 1 vote down

If the constructor doesn't finish executing, the object doesn't exist, so there's nothing to destruct. This is in C++, I have no idea about C#.

link|flag
vote up 0 vote down

C++ -

Nope. Destructor is not called for partially constructed objects. A Caveat: The destructor will be called for its member objects which are completely constructed. (Includes automatic objects, and native types)

BTW - What you're really looking for is called "Stack Unwinding"

link|flag
Actually, I'm writing an STL-style collection, so I call constructors and destructors manually. Therefore I was wondering whether it's normal to call the destructor in case of an exception. But this "partial destruction" you describe must be done by the compiler, so I don't have to. – Qwertie Oct 9 '08 at 19:32
vote up 0 vote down

Don't do things that cause exceptions in the constructor.

Call an Initialize() after the constructor that can throw exceptions.

link|flag
Please, could you explain why? The "Initialize()" idiom is an antipattern in most cases in C++. Perhaps you're mistaking with "don't ever throw an exception from a Destructor?" – paercebal Oct 9 '08 at 19:57
I know, designing a class with "Initialize()" beats the purpose of having a class at all. – unknown (yahoo) Oct 9 '08 at 20:17
There are plenty of valid reasons for creating classes with an init method, especially when dealing with concurrency. Sometimes you need object creation to be cheap, even when the primary initialization of that object is expensive. – Herms Oct 9 '08 at 20:25
Google's code guidelines discourage using exceptions at all, so they discourage throwing from the constructor ( google-styleguide.googlecode.com/svn/trunk/… ). – Max Lybbert Oct 9 '08 at 22:35
On the other hand, pretty much everybody else says to throw from a constructor because that is the only way to signal the constructor failed ( herbsutter.wordpress.com/2008/07/… ). – Max Lybbert Oct 9 '08 at 22:37
vote up 0 vote down

For C++ this is addressed in a previous question: http://stackoverflow.com/questions/147572/will-the-below-code-cause-memory-leak-in-c

Since in C++ when an exception is thrown in a constructor the destructor does not get called, but dtors for the object's members (that have been constructed) do get called, this is a primary reason to use smart pointer objects over raw pointers - they are a good way to prevent memory leaks in a situation like this.

link|flag
vote up -2 vote down

Be sure to read this before dabbling with exceptions in C++ constructors.

link|flag
C++ "fanboys" should not follow this link :-) – finnw Oct 10 '08 at 18:52

Your Answer

Get an OpenID
or

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