In Synchronized Collection a thread lock the entire list. Only one thread access the entire list at a time. In concurrent collection a threat lock one element, each element can be accessed by different thread concurrently
Java supported multithreading and concurrency from initiation. Java has introduced the concurrent collection in java 5.0 and java 6.0 over the synchronized collection to improve the performance in a multithreading environment. java has provided concurrent collection API apart from collection API to handle the multithreading and concurrency in a better manner. We can find all the new concurrent collection Interfaces and Classes under the package name java.util.concurrent.
In this article, we will focus on some Key interfaces and classes of the java.util.concurrent package.
import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; public class TestHashMap extends Thread { private static Map hm = Collections.synchronizedMap(new HashMap()); public void run() { hm.put("Four", 4); } public static void main(String[] args) { hm.put("One", 1); hm.put("Two", 2); hm.put("Three", 3); TestHashMap t1 = new TestHashMap(); t1.start(); for (Object o : hm.entrySet()) { System.out.println(o); } System.out.println(hm); } }
import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; public class TestHashMap extends Thread { private static ConcurrentHashMap hm = new ConcurrentHashMap(); public void run() { hm.put("Four", 4); } public static void main(String[] args) { hm.put("One", 1); hm.put("Two", 2); hm.put("Three", 3); TestHashMap t1 = new TestHashMap(); t1.start(); for (Object o : hm.entrySet()) { System.out.println(o); } System.out.println(hm); } }