vote up 8 vote down star

Whatever is inside finally blocks is executed (almost) always, so what's the difference between enclosing code into it or leaving it unclosed?

flag

What do you mean by leaving it unclosed? – Ramesh Feb 13 at 21:37
And what do you mean by "(almost)"? – Beska Feb 13 at 21:38
That is not true at all. The whole point is that if an error occurs, control will jump to the catch block. The only way it would always run all of the code is if no exception ever occurred, and then why would you use the try/catch at all? – Ed Swangren Feb 13 at 21:42
If you pull the power cord out while a machine is executing a try clause the finally clause will not be called. – Dour High Arch Feb 13 at 21:43
lol, yes, that's true, but you can't really code for that can you? – Ed Swangren Feb 13 at 21:45
show 1 more comment

9 Answers

vote up 29 vote down check

The code inside a finally block will get executed regardless of whether or not there is an exception. This comes in very handy when it comes to certain housekeeping functions you need to always run like closing connections.

Now, I'm guessing your question is why you should do this:

try
{
    doSomething();
}
catch
{
    catchSomething();
}
finally
{
    alwaysDoThis();
}

When you can do this:

try
{
    doSomething();
}
catch
{
    catchSomething();
}

alwaysDoThis();

The answer is that a lot of times the code inside your catch statement will either rethrow an exception or break out of the current function. With the latter code, the "alwaysDoThis();" call won't execute if the code inside the catch statement issues a return or throws a new exception.

link|flag
Hmm. Very similar to what I said, but clearer and more exact. Definite +1. – Beska Feb 13 at 21:44
this applies to "return" inside the try{} block, too. – Lucas Feb 13 at 21:47
1  
in fact, it applies even without a catch{} block (just try/finally, letting exceptions bubble up) – Lucas Feb 13 at 21:49
better then mine, was at work and didn't want to spend ten minutes answering it in detail. +1 – Matt Briggs Feb 13 at 22:23
Yes, this was exactly what I had in mind :D Now I understand it. – Rodrigo Feb 13 at 23:01
vote up 5 vote down

finally, as in:

try {
  // do something risky
} catch (Exception ex) {
  // handle an exception
} finally {
  // do any required cleanup
}

is a garunteed opportunity to execute code after your try..catch block, regardless of whether or not your try block threw an exception.

That makes it perfect for things like releasing resources, db connections, file handles, etc.

link|flag
All of those examples are typically better served with a using block, but that doesn't really detract from your answer. – Joel Coehoorn Feb 13 at 21:43
I wish I could +1 on your comment. Both clauses are perfect. – Beska Feb 13 at 21:45
vote up 4 vote down

Because finally will get executed even if you do not handle an exception in a catch block.

link|flag
vote up 3 vote down

Most advantages of using try-finally have already been pointed out, but I thought I'd add this one:

try
{
    // Code here that might throw an exception...

    if (arbitraryCondition)
    {
        return true;
    }

    // Code here that might throw an exception...
}
finally
{
    // Code here gets executed regardless of whether "return true;" was called within the try block (i.e. regardless of the value of arbitraryCondition).
}

This behaviour makes it very useful in various situations, particularly when you need to perform cleanup (dispose resources), though a using block is often better in this case.

link|flag
vote up 2 vote down

Say you need to set the cursor back to the default pointer instead of a waiting (hourglass) cursor. If an exception is thrown before setting the cursor, and doesn't outright crash the app, you could be left with a confusing cursor.

link|flag
vote up 1 vote down

Sometimes you don't want to handle an exception (no catch block), but you want some cleanup code to execute.

For example:

try
{
    // exception (or not)
}
finally
{
    // clean up always
}
link|flag
vote up 1 vote down

any time you use unmanaged code requests like stream readers, db requests, etc; and you want to catch the exception then use try catch finally and close the stream, data reader, etc. in the finally, if you don't when it errors the connection doesn't get closed, this is really bad with db requests

 SqlConnection myConn = new SqlConnection("Connectionstring");
        try
        {
            myConn.Open();
            //make na DB Request                
        }
        catch (Exception DBException)
        {
            //do somehting with exception
        }
        finally
        {
           myConn.Close();
           myConn.Dispose();
        }

if you don't want to catch the error then use

 using (SqlConnection myConn = new SqlConnection("Connectionstring"))
        {
            myConn.Open();
            //make na DB Request
            myConn.Close();
        }

and the connection object will be disposed of automatically if there is an error, but you don't capture the error

link|flag
Dispose() will also Close() the connection, no need to call both. Close() does NOT Dipose(), you can reopen the connection. – Lucas Feb 13 at 23:05
Nice, thanks for mentioning using. I would have to answer, otherwise. – yar Aug 1 at 1:27
vote up 1 vote down

The finally block is valuable for cleaning up any resources allocated in the try block as well as running any code that must execute even if there is an exception. Control is always passed to the finally block regardless of how the try block exits.

link|flag
vote up 1 vote down

Ahh...I think I see what you're saying! Took me a sec...you're wondering "why place it in the finally block instead of after the finally block and completely outside the try-catch-finally".

As an example, it might be because you are halting execution if you throw an error, but you still want to clean up resources, such as open files, database connections, etc.

link|flag

Your Answer

Get an OpenID
or

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