| Author |
regarding static method
|
rai talari
Ranch Hand
Joined: Jan 31, 2006
Posts: 34
|
|
|
If Static method is synchronized which object is considered for lock?
|
nothing is impossible in the world even the word impossible sounds as I'M'Possible.
|
 |
Peter Chase
Ranch Hand
Joined: Oct 30, 2001
Posts: 1970
|
|
|
The instance of java.lang.Class associated with the class in which the method resides.
|
Betty Rubble? Well, I would go with Betty... but I'd be thinking of Wilma.<br /> <br />#:^P
|
 |
Raghu Arikeri
Greenhorn
Joined: Jan 09, 2006
Posts: 15
|
|
hi, just want add something to what Peter Chase said... For every class loaded, the JVM has a corresponding java.lang.Class instance. So when a static method is synchronized, it's the lock of java.lang.Class instance which is used. for instance methods there will be one lock per instance and for static methods one lock per class
|
Raghu
"Work for a cause and not applause. Live to express and not to impress"
|
 |
 |
|
|
subject: regarding static method
|
|
|