Can anyone explain what is unsynchronized & synchronized access in Java Collections Framework? Thanks in advance.
|
Synchronized vs unsynchronized access doesn't have to do with the Java Collections Framework per see. Synchronized access means that you have some sort of locking for accessing the data. This can be introduced by using the Unsynchronized access means that you don't have any locking involved when accessing the data. If you're using a collection in several threads, you better make sure that you're accessing it in a synchronized way, or, that the collection itself is thread safe, i.e., takes care of such locking internally. To make sure all accesses to some collection
In the former approach, you need to make sure that every access to the collection is covered by As pointed out by @Fatal however, you should understand that the latter approach only transforms a thread unsafe collection into a thread safe collection. This is most often not sufficient for making sure that the class you are writing is thread safe. For an example, see @Fatals comment. |
|||||
|
|
Synchronized access means it is thread-safe. So different threads can access the collection concurrently without any problems, but it is probably a little bit slower depending on what you are doing. Unsynchronized is the opposite. Not thread-safe, but a little bit faster. |
||||
|
|
|
The synchronized access in Java Collection Framework is normally done by wrapping with There are some exceptions already synchronized like But keep in mind: Synchronization is done over the collection instance itself and has a scope for each method call. So subsequent calls maybe interrupted by another thread. Example:
You first call So even with synchronized collections you've to care about synchronization and it maybe necessary to synchronize yourself outside the collection! |
|||
|
|