Possible Duplicate:
How do synchronized static methods work in Java?
Can someone make me understand the fundamental difference between the following two functions:
public static void synchronized f() {… }
and
public void synchronized f() {… }
Can someone make me understand the fundamental difference between the following two functions:
and
|
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
In the case of
The synchronization is per instance of the of enclosing class. This means that multiple threads can call For
Only one thread at a time can call that method, regardless of the number of instances of the enclosing class. Technically, the monitor taken by Note that, if you have classes of the same name in different |
|||||||
|
|
In a "static synchnronized" method, the lock that is synchronized against is on the class itself; in a "synchornized" method, the lock is on the object. Note that this means that a "static synchronzied" method will not be blocked by a running "synchronzied" method, and vice versa. For more info, see: http://geekexplains.blogspot.com/2008/07/synchronization-of-static-and-instance.html |
|||
|
|
|
Assuming the method f is in a class Foo. The static version will lock on the the static method call at the class level (the object returned by getClass() or Foo.class). The non static version will lock for particular instances of that class, so lets say:
In the static instance a call to f() will lock for both versions so only one method call to f would be executing at one time. |
||||
|
|
I think:
I can be wrong |
|||||
|