ReentrantLock is a Java mutex class.
1
vote
2answers
3k views
why use a ReentrantLock if one can use synchronized(this)
I'm trying to understand what makes the lock in concurrency so important if one can use 'synchronized (this). In the dummy code below, I can do either:
synchronized the entier method or synchronize ...
1
vote
1answer
124 views
Why is lock captured to a local variable
In java JRE I saw the code
private final ReentrantLock lock;
public E poll() {
final ReentrantLock lock = this.lock;
lock.lock();
Why is lock captured to a private variable? I would ...