Tagged Questions
4
votes
2answers
1k views
Does making a Reentrant Lock static and make it a mutex?
In Brian Goetz's book, Java Concurrency in Practice, his example of a Reentrant lock is programmed like this:
Lock lock = new ReentrantLock();
However, I am curious to know if changing the above ...