Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having a problem understanding the order of execution for the try-catch-finally. All the example I've seen (like in:http://stackoverflow.com/questions/4191027/order-of-execution-of-try-catch-and-finally-block) have a very simple "catch" part which print to console. but what happen if I use a "throw" statement in the catch?

The simplest code I could think of which capture the problem:

public class TestClass
{
    void Foo(int num)
    {
        int answer = 100;
        try
        {
            answer = 100 / num;
        }
        catch (Exception e)
        {
            //Probably num is 0
            answer = 200;
            throw;
        }
        finally
        {
            Console.WriteLine("The answer is: " + answer);
        }
    }
}

If num == 2, then the output will be:

The answer is: 50

But what would be printed for num == 0?

The answer is: 100
The answer is: 200
No printing at all...

or is it just a "undefined behavior"?

share|improve this question
21  
Since you have built your test case, it is unclear to me why you have not run it to find out the answer. – RedFilter Oct 25 '11 at 15:29
1  
@RedFilter: because I want to know what is the right behavior in this scenario rather then base my code on a one time test I'm having. finding later on it's a "undefined behavior". – Roee Gavirel Oct 25 '11 at 15:32
3  
If i were asking the question i'd have tried it, then asked a question This code gives this result, why? Can i rely on this? – George Duckett Oct 25 '11 at 15:36
1  
@RoeeGavirel: "I just wanted to understand what the standards are saying" -- OK, which sentence in the standards document did you find confusing? I am eager to learn which parts of the standard are confusing so that I can rewrite them to be less confusing. – Eric Lippert Oct 25 '11 at 15:41
1  
Also, I note that you do not say whether the re-thrown exception is caught anywhere. That makes a difference! If it is not caught anywhere then yes, that is undefined behaviour; an unhandled exception is always undefined behaviour. If it is caught then the behaviour is well-defined. – Eric Lippert Oct 25 '11 at 16:06
show 4 more comments

closed as not a real question by Oded, Andrew, Neil Knight, RedFilter, George Duckett Oct 25 '11 at 15:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 2 down vote accepted

The easiest way to test is to try it. It should print - the answer is 200, and then error out.

Finally will always be called (except for some exceptions that cannot be caught, e.g. stack overflow). You should take care to try and not throw an exception from within your finally block...

Here your flow will be:

exception caused
caught
answer variable set
exception thrown
finally block executed
exception propogated up the stack
share|improve this answer
Actually, in putting his code in to practice as he presented it, I put a breakpoint in the finally block, called Foo with 0 and it never, ever hit the breakpoint unless I commented out the throw. – Moo-Juice Oct 25 '11 at 15:34
Did it run the finally block? Because when I ran it although I didn't put in break points it did run the finally block... – Chris Oct 25 '11 at 15:38

If an exception occurs inside the try block, the code inside the catch block is executed. If you have several catch blocks, the one that matches the caught exception best is excuted.

class A : System.Exception {}
class B : A {}

void Test()
{
    try
    {
        throw new B();
    }
    catch (A a)
    {
        //as B is derived from A, this catch block will be invoked.
    }
    catch (Exception e)
    {
    }
}

The finally block is executed after all. It doesn't matter whether or not an exception occured.

[EDIT] To clarify the order a bit more (thanks to the comments)

void Test()
{
    Debug.WriteLine("1");
    try
    {
        Debug.WriteLine("2");
        throw new Exception();
        Debug.WriteLine("3");
    }
    catch
    {
        Debug.WriteLine("4");
        throw;
        Debug.WriteLine("5");
    }
    finally
    {
        Debug.WriteLine("6");
    }
    Debug.WriteLine("7");
}

What will be printed is:

1 2 4 6

3 is not printed because an exception si throw before it. The same for 5. 7 is not printed because of the throw in the catch block.

[/EDIT]

So answering your question: The answer is: 200

share|improve this answer
So it will execute the "throw" after the finally? – Roee Gavirel Oct 25 '11 at 15:34
No, throw is executed before entering the finally block. – PVitt Oct 25 '11 at 15:36
2  
it will execute the throw immediately. So any code in the catch block after the throw will not be executed. However, it will execute the finally before passing the thrown exception up to the appropriate parent. – Chris Oct 25 '11 at 15:37
3  
As Eric Lippert said, finally would be a pretty poor choice of keyword if it didn't run last, wouldn't you say? – RedFilter Oct 25 '11 at 15:41
1  
@Chris: note that the runtime does not guarantee execution of the finally. There might be no catch block, in which case it is implementation-defined whether the finally executes or not. Or there might be a catch with an exception filter, and the filter code might failfast the process, in which case the finally does not run. "Finally" does not mean "immediately". – Eric Lippert Oct 25 '11 at 16:04
show 6 more comments

By popular demand from a comment to another answer:

it will execute the throw immediately. So any code in the catch block after the throw will not be executed. However, it will execute the finally before passing the thrown exception up to the appropriate parent.

Original answer

Your code will execute the try block. If this succeeds fine it will run the finally block. It will then end.

If the try block throws an exception somewhere then it will immediately stop executing at that point and start executing the catch block (assuming that exception type is caught). Once the catch block has finished executing it will execute the finally block. Then in this case it will propogate the thrown error up the stack.

Edited to add: yes, it will print 200 as the answer becuase the final is the final part to run, after your catch block has reset the answer.

share|improve this answer

It is difficult to explain, but generally when the scope (which is the stackframe in your case) is exited the finally clause will execute.

share|improve this answer

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