4
votes
Avoid synchronized(this) in Java?
While you are using synchronized(this) you are using the class instance as a lock itself. This means that while lock is acquired by thread 1 the thread 2 should wait
Suppose the following c …
