vote up 1 vote down star

I was wondering if

synchronize (lock) {
    ... 
}

Where lock is an instance of java.util.concurrent.locks.Lock, treats lock like any other object or as the try-finally idiom i.e.

 lock.lock(); 
 try {
     ... 
 } finally { 
    lock.unlock();
 }
flag

2 Answers

vote up 12 vote down check

Lock documentation:

Note that Lock instances are just normal objects and can themselves be used as the target in a synchronized statement. Acquiring the monitor lock of a Lock instance has no specified relationship with invoking any of the lock() methods of that instance. It is recommended that to avoid confusion you never use Lock instances in this way, except within their own implementation.

So basically, it's treated as any other object. And, don't do that.

link|flag
why "Don't do that"? – hhafez Jun 25 at 21:07
1  
@hhafez: "Don't do that" because the documentation says "It is recommended that to avoid confusion you never use Lock instances in this way, except within their own implementation." – Grant Wagner Jun 25 at 21:12
1  
FindBugs will find this bug. – Tom Hawtin - tackline Jun 25 at 21:13
vote up 2 vote down

It will treat the lock just like any other object.

link|flag

Your Answer

Get an OpenID
or

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