vote up 4 vote down star
2

The Java Tutorials say: "it is not possible for two invocations of synchronized methods on the same object to interleave."

What does this mean for a static method? Since a static method has no associated object, will the synchronized keyword lock on the class, instead of the object?

flag

23% accept rate

3 Answers

vote up 7 vote down check

will the synchronized keyword lock on the class, instead of the object?

Yes. :)

link|flag
Hey thanks again. I owe you two now. – jbu Jan 13 '09 at 0:56
Please answer Elaborate so that everyone can understand. – Madhu Sep 2 at 4:49
vote up 9 vote down

Just to add a little detail to Oscar's (pleasingly succinct!) answer, the relevant section on the Java Language Specification is 8.4.3.6, 'synchronized Methods':

A synchronized method acquires a monitor (ยง17.1) before it executes. For a class (static) method, the monitor associated with the Class object for the method's class is used. For an instance method, the monitor associated with this (the object for which the method was invoked) is used.

link|flag
Useful, I was looking for that quote +1 – Oscar Reyes Jan 13 '09 at 3:06
vote up 3 vote down

One point you have to be careful about (several programmers generally fall in that trap) is that there is no link between synchronized static methods and sync'ed non static methods, ie:

class A {
    static synchronized f() {...}
    synchronized g() {...}
}

Main:

A a = new A();

Thread 1:

A.f();

Thread 2:

a.g();

f() and g() are not synchronized with each other and thus can execute totally concurrently.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.