Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been looking around for the answer to this, but no joy. In Java, is using the lock created by ReentrantReadWriteLock equivalent to getting the read and write locks as returned by readLock.lock() and writeLock.lock()? In other words, can I expect the read and write locks associated with the ReentrantReadWriteLock to be requested and held by synchronizing on the ReentrantReadWriteLock?

My gut says "no" since any object can be used for synchronization. I wouldn't think that there would be special behavior for ReentrantReadWriteLock. However, special behavior is the corner case of which I may not be aware.

Thanks, Todd

share|improve this question
1  
Looking through the source the intrinsic lock of ReentrantReadWriteLock does not seem to have any effect on the readLock and writeLock. So your gut feel seems to be right. – Binil Thomas Apr 25 '10 at 19:27
@binil If you post your comment as an answer, I will select it. While the other posted answer is technically correct, it did not directly answer my question. Thanks. – Todd Apr 26 '10 at 16:13

1 Answer

java.util.concurrent.locks and lock support in the Java language are completely separate mechanisms.

Some static analysis tools will flag attempting to use synchronized on a Lock object.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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