Can any one tell me the advantage of synchronized method over synchronized block with an example?Thanks.
|
1
|
|||
|
|
|
There is not a clear advantage of using synchronized method over block. Perhaps the only one ( but I wouldn't call it advantage ) is you don't need to include the object refence "this". Method:
Block
See? no advantage at all. Blocks do have advantages over methods, most of all flexibility, but, that was not your question. |
||
|
|
|
|
Synchronized blocks place locks for shorter periods than synchronized methods. |
||
|
|
|
With synchronized blocks, you can have multiple synchronizers, so that multiple simultaneous but non-conflicting things can go on at the same time. |
||
|
|
|
|
The only real difference is that a synchronized block can choose which object it synchronizes on. A synchronized method can only use
The latter is more flexible since it can compete for the associated lock of any object, often a member variable. It's also more granular because you could have concurrent code executing before and after the block but still within the method. Of course, you could just as easily use a synchronized method by refactoring the concurrent code into separate non-synchronized methods. Use whichever makes the code more comprehensible. |
||||
|
|
|
Note: static synchronized methods and blocks work on the Class object.
|
||
|
|
|
|
The main difference is that if you use a synchronized block you may lock on an object other than this which allows to be much more flexible. Assume you have a message queue and multiple message producers and consumers. We don't want producers to interfere with each other, but the consumers should be able to retrieve messages without having to wait for the producers. So we just create an object
And from now on every time a producers wants to add a new message we just lock on that:
So consumers may still read, and producers will be locked. HTH Snyke |
||
|
|
|
|
Most often I use this to synchronize access to a list or map but I don't want to block access to all methods of the object. In the following code one thread modifying the list will not block waiting for a thread that is modifying the map. If the methods were synchronized on the object then each method would have to wait even though the modifications they are making would not conflict.
|
||
|
|
|
|
Synchronized MehtodPros:
Cons:
Synchronized blockPros:
Cons:
Personally I prefer using synchronized methods with classes focused only to the thing needing synchronization. Such class should be as small as possible and so it should be easy to review the synchronization. Others shouldn't need to care about synchronization. |
||
|
|
|
|
This is somewhat of a duplicate of Avoid synchronized(this) in Java? and In Java critical sections, what should I synchronize on? |
||
|
|
|
|
In general these are mostly the same other than being explicit about the object's monitor that's being used vs the implicit this object. One downside of synchronized methods that I think is sometimes overlooked is that in using the "this" reference to synchronize on you are leaving open the possibility of external objects locking on the same object. That can be a very subtle bug if you run into it. Synchronizing on an internal explicit Object or other existing field can avoid this issue, completely encapsulating the synchronization. |
||
|
|
