AutoLock in Java - how to ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T07:04:34Zhttp://stackoverflow.com/feeds/question/151917http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/151917/autolock-in-java-how-to2AutoLock in Java - how to ?Dmitry Khalatov2008-09-30T05:58:22Z2008-10-01T05:53:27Z
<p>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)?</p>
http://stackoverflow.com/questions/151917/autolock-in-java-how-to/151932#15193210Answer by Michael Barker for AutoLock in Java - how to ?Michael Barker2008-09-30T06:05:11Z2008-10-01T05:53:28Z<p>A try/finally block is the closest thing that you can get to this behaviour:</p>
<pre><code>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();
}
</code></pre>
http://stackoverflow.com/questions/151917/autolock-in-java-how-to/151962#1519622Answer by dhiller for AutoLock in Java - how to ?dhiller2008-09-30T06:20:14Z2008-09-30T06:20:14Z<p>Like mike said, a finally block should be your choice. see the <a href="http://java.sun.com/docs/books/tutorial/essential/exceptions/finally.html" rel="nofollow">finally block tutorial</a>, where it is stated:</p>
<blockquote>
<p>The finally block <strong>always</strong> executes when
the try block exits. This ensures that
the finally block is executed even if
an unexpected exception occurs.</p>
</blockquote>