can any one explain the statement ..."static synchronized method and non static synchronized method will not block each other -they can run at the same time"
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The lock objects are different on the static method and non-static method. The static method uses the Class object as the lock (lock obj: |
|||||||||||||
|
equals
while
equals
This means: While static methods lock on the class object of the class, non-static methods lock on the instance on which they're called (by default, synchronized(anyOtherLock) is also possible). Since they lock on different objects, they can run in "parallel". |
|||
|
|