Online Java Compiler By
JavaTpoint.com
import java.util.*; public class CollectionsSynchronizedSortedMapExample1 { public static void main(String[] args) { SortedMap
map = new TreeMap
(); map.put("1", "Whatsapp"); map.put("4", "Instagram"); map.put("3", "Facebook"); map.put("2", "Twitter"); SortedMap
sortmap = Collections.synchronizedSortedMap(map); System.out.println("Synchronized sorted map is :" + sortmap); } }
Output