I have came know that the difference between ArrayList and Vector class is that Vector class is synchronised whereas the ArrayList is not. I know what is synchronization, but can anyone explain how it is useful in this context?
|
This class will work fine even if multiple threads call the The performance of Note that this applies when the collection is used as an instance field. If the vector is declared within a method, then you gain nothing with the synchornization (no other thread can use it anyway). In fact, there is something called "escape analysis", which in this case removes the synchornization if it is not needed. But I think it is not on by default. |
|||||||||||
|
|
Synchronization is used in the context of Concurrency. This clearly explains why synchronization is essential:
Synchronized class/method/instance/statement variables prevents concurrent usage of the synchronized class/method/instance/statement.
Vectors are thread-safe (meaning synchronized) while ArrayList aren't. You can allow thread safety by using |
|||
|
|
|
I did not wanted to redirect you, but I have the same thing to say as here: http://manikandanmv.wordpress.com/2009/03/21/vector-vs-arraylist/
ArrayList are more preffered and you can externally synchronize them by |
|||
|
|
|
Synchronization of a list is necessary if multiple threads may access it concurrently. Synchronization is an unnecessary (but not necessarily significant) cost if only a single thread can access the list. I personally tend to use ArrayList by default, and synchronize access to it if required. Using the common List<> interface to refer to instances of Vector or ArrayList allows you to switch implementations more easily. |
||||
|
|
|
|
|||
|
|
|
You ask what synchronization is useful for? You might enjoy Doug Lea's book Concurrent Programming in Java. Although it is slightly dated, it gave a good academic treatment of the issues inherent in multiple threads of execution accessing the same data structures. For actual application and a more up-to-date treatment, you would read Java Concurrency in Practice. As Doug Lea would put it, you want threads of execution to make progress. But you also want to preserve the integrity of data structures. In the case of Vector and ArrayList, suppose two threads went to add an item 'at the same time'. One of the things that needs to be done is that the count of items in the needs to be incremented. This is something hidden from you, but is nonetheless important to the collection itself. It would not do for ThreadA to see that before it added the item, the count was 3, and tried to write 4, but meanwhile ThreadB had already incremented it to 4 and it should now be 5! Synchronisation is one approach to solving this problem. Essentially, when two threads attempt to access the same object and it encounters a 'synchronized block' (which sometimes may be an entire method), ThreadB has to wait until ThreadA is finished and 'releases the lock'. That way, there is no chance of the two threads reading the count and then two threads writing the count. By forcing an order on the operations of the threads (synchronizing them), there is a read/write followed by another read/write. |
|||
|
|