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 ...