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)?
|
|
|
|
|
|
|
A try/finally block is the closest thing that you can get to this behaviour:
|
||||
|
|
|
Like mike said, a finally block should be your choice. see the finally block tutorial, where it is stated:
|
||
|
|
