This question already has an answer here:
What is the difference between a synchronized method and synchronized block in Java ?
I have been searching the answer on the Net, people seem to be so unsure about this one :-(
My take would be there is no difference between the two, except that the synch block might be more localized in scope and hence the lock will be of lesser time ??
And in case of Lock on a static method, on what is the Lock taken ? What is the meaning of a Lock on Class ?
Yes, that is one difference. The other is that you can acquire a lock on other objects than
this
.A synchronized method is shorthand. This:
is, for all intents and purposes, equivalent to this:
(Where
Something.class
is the class object for the classSomething
.)So indeed, with a synchronized block, you can be more specific about your lock, and more fine-grained about when you want to use it, but other than that there's no difference.
The key difference is this: if you declare a method to be synchronized, then the entire body of the method becomes synchronized; if you use the synchronized block, however, then you can surround just the "critical section" of the method in the synchronized block, while leaving the rest of the method out of the block.
If the entire method is part of the critical section, then there effectively is no difference. If that is not the case, then you should use a synchronized block around just the critical section. The more statements you have in a synchronized block, the less overall parallelism you get, so you want to keep those to the minimum.
A synchronized method uses the method receiver as a lock (i.e.
this
for non static methods, and the enclosing class for static methods).Synchronized
blocks uses the expression as a lock.So the following two methods are equivalent from locking prospective:
For static methods, the class will be locked:
For synchronized blocks, you can use any non-
null
object as a lock:Lock scope
For synchronized methods, the lock will be held throughout the method scope, while in the
synchronized
block, the lock is held only during that block scope (otherwise known as critical section). In practice, the JVM is permitted to optimize by removing some operations out of thesynchronized
block execution if it can prove that it can be done safely.A synchronized method locks on the object instance the method is contained in.
Where as a synchronized block can lock on ANY object - typically a mutex obect defined as an instance variable. This allows more control over what locks are in operation.
Yes. You are right. Unlike
synchronized
methods, synchronized statements must specify the object that provides the intrinsic lock.Example from java tutorial:
Synchronized statements are also useful for improving concurrency with fine-grained synchronization. You can find good example on same tutorial page for below use case.
Suppose, for example, class
MsLunch
has two instance fields, c1 and c2, that are never used together. All updates of these fields must besynchronized
, but there's no reason to prevent an update of c1 from being interleaved with an update of c2 — and doing so reduces concurrency by creating unnecessary blocking. Instead of using synchronized methods or otherwise using the lock associated with this, we create two objects solely to provide locks.In this case, the thread acquires the intrinsic lock for the Class object associated with the class. Thus access to class's static fields is controlled by a lock that's distinct from the lock for any instance of the class.
When you make a method as synchronized ( non
static
) :It is not possible for two invocations of
synchronized
methods on the same object to interleave. When one thread is executing a synchronized method for an object, all other threads that invoke synchronized methods for the same object block (suspend execution) until the first thread is done with the object.If you make a method as
static synchronized
:It is not possible for two invocations of
static synchronized
methods on different objects of same class to interleave. When one thread is executing astatic synchronized
method for an object of Class A, all other threads that invokestatic synchronized
methods on any of objects of Class A block (suspend execution) until the first thread is done with the method execution.You find better alternatives to synchronization in this SE question:
Avoid synchronized(this) in Java?