- Concurrent Collection provides a way to store group of similar objects as a single unit/entity
- It can be accessed by multiple threads and performs operations simultaneously
- Concurrent Collection classes never throws ConcurrentModificationException
Here is the index for Java Concurrent Collection concepts
Concurrent Collection
Map
- ConcurrentMap interface
- ConcurrentHashMap class with example
- ConcurrentHashMap with Read and Update operations simultaneously
- HashMap v/s ConcurrentHashMap
- ConcurrentHashMap v/s SynchronizedMap
List
- CopyOnWriteArrayList class with example
- CopyOnWriteArrayList with Read and Update operations simultaneously
- Remove operation with CopyOnWriteArrayList and ArrayList
- ArrayList v/s CopyOnWriteArrayList
- CopyOnWriteArrayList v/s SynchronizedList
Set
- CopyOnWriteArraySet class with example
- CopyOnWriteArraySet v/s HashSet
- CopyOnWriteArrayList v/s SynchronizedList
Interview Question & Answers
Suggest tutorials from Contact Us page