Are Locks AutoCloseable? That is, instead of:

Lock someLock = new ReentrantLock();
someLock.lock();
try
{
    // ...
}
finally
{
    someLock.unlock();
}

can I say:

try (Lock someLock = new ReentrantLock())
{
    someLock.lock();
    // ...
}

in Java 7?

link|improve this question

you can make a request to have them do that – ratchet freak Aug 6 '11 at 8:55
feedback

1 Answer

up vote 3 down vote accepted

No, neither the Lock interface (nor the ReentrantLock class) implement the AutoCloseable interface, which is required for use with the new try-with-resource syntax.

If you wanted to get this to work, you could write a simple wrapper:

public class LockWrapper implements AutoCloseable
{
    private Lock _lock;
    public LockWrapper(Lock l) {
       this._lock = l;
    }

    public void lock() {
        this._lock.lock();
    }

    public void close() {
        this._lock.unlock();
    }
}

Now you can write code like this:

try (LockWrapper someLock = new LockWrapper(new ReentrantLock()))
{
    someLock.lock();
    // ...
}

I think you're better off sticking with the old syntax, though. It's safer to have your locking logic fully visible.

link|improve this answer
1  
+1 I'd probably already lock() in the constructor. – FredOverflow Aug 6 '11 at 9:35
2  
Just to clarify for beginners reading this: In real code you should not create a new lock every time you're locking it, because that removes its function. – Bart van Heukelom Dec 4 '11 at 14:46
feedback

Your Answer

 
or
required, but never shown

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