vote up 2 vote down star

What is the best way to free resources (in this case unlock the ReadWriteLock) when leaving the scope ? How to cover all possible ways (return, break, exceptions etc)?

flag

2 Answers

vote up 10 vote down check

A try/finally block is the closest thing that you can get to this behaviour:

Lock l = new Lock();
l.lock();  // Call the lock before calling try.
try {
    // Do some processing.
    // All code must go in here including break, return etc.
    return something;
} finally {
    l.unlock();
}
link|flag
"l.lock()" should really be called before "try" as per the example: java.sun.com/j2se/1.5.0/… – McDowell Sep 30 '08 at 13:11
And to justify the prior comment: the reason you want to call l.lock() outside the try block is that lock() may throw an exception - and if it does, you definitely don't want to call unlock() on it (which will then throw an exception and make it hard to find the original exception throw). – Kevin Day Oct 1 '08 at 3:54
vote up 2 vote down

Like mike said, a finally block should be your choice. see the finally block tutorial, where it is stated:

The finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs.

link|flag

Your Answer

Get an OpenID
or

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