A try/finally block is the closest thing that you can get to this behaviour:
Lock l = new Lock();
try {
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();
}
