AutoLock in Java - how to ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:04:34Z http://stackoverflow.com/feeds/question/151917 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/151917/autolock-in-java-how-to 2 AutoLock in Java - how to ? Dmitry Khalatov 2008-09-30T05:58:22Z 2008-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#151932 10 Answer by Michael Barker for AutoLock in Java - how to ? Michael Barker 2008-09-30T06:05:11Z 2008-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#151962 2 Answer by dhiller for AutoLock in Java - how to ? dhiller 2008-09-30T06:20:14Z 2008-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>