Making every object lockable looks like a design mistake:
- You add extra cost for every object created, even though you'll actually use it only in a tiny fraction of the objects.
- Lock usage become implicit, having
lockMap.get(key).lock()is more readable than synchronization on arbitrary objects, eg,synchronize (key) {...}. - Synchronized methods can cause subtle error of users locking the object with the synchronized methods
- You can be sure that when passing an object to a 3rd parting API, it's lock is not being used.
eg
class Syncer {
synchronized void foo(){}
}
...
Syncer s = new Syncer();
synchronize(s) {
...
}
// in another thread
s.foo() // oops, waiting for previous section, deadlocks potential
- Not to mention the namespace polution for each and every object (in C# at least the methods are static, in Java synchronization primitives have to use
await, not to overloadwaitinObject...)
However I'm sure there is some reason for this design. What is the great benefit of intrinsic locks?
synchronized(o) { synchronized(o) { synchronized(o) { ... } } }is perfectly safe in Java, and equivalent tosynchronized(o) { ... }. The thread won't "lock itself out", or anything like that, if that's what you're expecting. – ruakh Aug 29 '12 at 19:07