Vector methods are synchronized. What does it mean programmatically and logically?
|
|
The synchronized keyword is all about different threads reading and writing to the same variables, objects and resources. This is not a trivial topic in Java, but here is a quote from Sun:
In a very, very small nutshell: When you have two threads that are reading and writing to the same 'resource', say a variable named Again, this is a non-trivial topic in Java. To learn more, explore topics here on SO and the Interwebs about: Keep exploring these topics until the name "Brian Goetz" becomes permanently associated with the term "concurrency" in your brain. |
|||||||||||||||||||
|
|
The "Synchronized" keywords prevents concurrent access to a block of code or object by multiple Threads. By default, a Hashtable is synchronized, so only one thread can access the table at a time. For a HashMap, if you want to prevent thread-safety issues you must manually account for this in your coding. |
|||||
|
|
|
Synchronised means that in a multiple threaded environment, a synchronised object does not let two threads access a the same time. This means that one thread can't be reading while another updates it. The second thread will instead wait until the first is done. The overhead is speed, but the advantage is guaranteed consistency of data. If your application is single threaded though, synchronised has no benefit. |
|||
|
|
|
The This is frequently called making the class thread-safe, but I would say this is a euphemism. While it is true that synchronization protects the internal state of the Vector from getting corrupted, this does not usually help the user of Vector much. Consider this:
Even though the methods involved are synchronized, because they are being locked and unlocked individually, two unfortunately timed threads can create a vector with two elements. So in effect, you have to synchronize in your application code as well. Because method-level synchronization is a) expensive when you don't need it and b) insufficient when you need synchronization, there are now un-synchronized replacements (ArrayList in the case of Vector). More recently, the concurrency package has been released, with a number of clever utilities that take care of multi-threading issues. |
|||
|
|
|
To my understanding synchronized basically means that the compiler write a monitor.enter and monitor.exit around your method. As such it may be thread safe depending on how it is used (what I mean is you can write an object with synchronized methods that isn't threadsafe depending on what your class does). |
|||
|
|
|
Think of it as a kind of turnstile like you might find at a football ground. There are parallel steams of people wanting to get in but at the turnstile they are 'synchronised'. Only one person at a time can get through. All those wanting to get through will do, but they may have to wait until they can go through. |
|||
|
|
|
As the above answers provide sufficient explanation of what synchronized means.An simple example of Synchronized block used in an Array list(making Array list synchronized) is given for better understanding
|
|||
|