Can any one tell me the advantage of synchronized method over synchronized block with an example?Thanks.
|
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 in flexibility, but, that was not your question. |
|||||||||||||
|
|
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. |
||||
Synchronized MethodPros:
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. |
||||
|
|
|
Synchronized method Synchronized methods have two effects. Second, when a synchronized method exits, it automatically establishes a happens-before relationship with any subsequent invocation of a synchronized method for the same object. This guarantees that changes to the state of the object are visible to all threads. Note that constructors cannot be synchronized — using the synchronized keyword with a constructor is a syntax error. Synchronizing constructors doesn't make sense, because only the thread that creates an object should have access to it while it is being constructed. Synchronized Statement Unlike synchronized methods, synchronized statements must specify the object that provides the intrinsic lock: 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. Q: Intrinsic Locks and Synchronization Synchronization is built around an internal entity known as the intrinsic lock or monitor lock. (The API specification often refers to this entity simply as a "monitor.") Intrinsic locks play a role in both aspects of synchronization: enforcing exclusive access to an object's state and establishing happens-before relationships that are essential to visibility. Every object has an intrinsic lock associated with it. By convention, a thread that needs exclusive and consistent access to an object's fields has to acquire the object's intrinsic lock before accessing them, and then release the intrinsic lock when it's done with them. A thread is said to own the intrinsic lock between the time it has acquired the lock and released the lock. As long as a thread owns an intrinsic lock, no other thread can acquire the same lock. The other thread will block when it attempts to acquire the lock.
Cross check different outputs with synchronized method, block and without synchronization. |
|||||
|
|
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 |
|||
|
|
|
Note: static synchronized methods and blocks work on the Class object.
|
|||
|
|
|
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.
|
|||
|
|
|
With synchronized blocks, you can have multiple synchronizers, so that multiple simultaneous but non-conflicting things can go on at the same time. |
|||
|
|
|
Synchronized method is used for lock all the objects Synchronized block is used to lock specific object |
|||
|
|
|
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. |
|||
|
|
|
Synchronized blocks place locks for shorter periods than synchronized methods. |
|||||||||
|
|
Synchronized methods can be checked using reflection API. This can be useful for testing some contracts, such as all methods in model are synchronized. The following snipped prints all the synchronized methods of Hashtable:
|
|||
|
|
|
Synchronizing with threads. 1) NEVER use synchronized(this) in a thread it doesn't work. Synchronizing with (this) uses the current thread as the locking thread object. Since each thread is independent of other threads, there is NO coordination of synchronization. 2) Tests of code show that in Java 1.6 on a Mac the method synchronization does not work. 3) synchronized(lockObj) where lockObj is a common shared object of all threads synchronizing on it will work. 4) ReenterantLock.lock() and .unlock() work. See Java tutorials for this. The following code shows these points. It also contains the thread-safe Vector which would be substituted for the ArrayList, to show that many threads adding to a Vector do not lose any information, while the same with an ArrayList can lose information. 0) Current code shows loss of information due to race conditions A) Comment the current labeled A line, and uncomment the A line above it, then run, method loses data but it shouldn't. B) Reverse step A, uncomment B and // end block }. Then run to see results no loss of data C) Comment out B, uncomment C. Run, see synchronizing on (this) loses data, as expected. Don't have time to complete all the variations, hope this helps. If synchronizing on (this), or the method synchronization works, please state what version of Java and OS you tested. Thank you.
|
||||
|
|