El métodosynchroncedSortedMap() de la clase java.util.Collections se utiliza para devolver un mapa ordenado sincronizado (seguro para subprocesos) respaldado por el mapa ordenado especificado. Para garantizar el acceso en serie, es fundamental que todo acceso al mapa ordenado de respaldo se realice a través del mapa ordenado devuelto (o sus vistas).
Sintaxis:
public static <K, V> SortedMapK, V> synchronizedSortedMap(SortedMapK, V> m)
Parámetros: Este método toma el mapa ordenado como un parámetro para ser «envuelto» en un mapa ordenado sincronizado.
Valor devuelto: este método devuelve una vista sincronizada del mapa ordenado especificado.
A continuación se muestran los ejemplos para ilustrar el métodosynchronizedSortedMap ()
Ejemplo 1:
// Java program to demonstrate // synchronizedSortedMap() method // for <String, String> Value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of SortedMap<String, String> SortedMap<String, String> map = new TreeMap<String, String>(); // populate the map map.put("1", "A"); map.put("2", "B"); map.put("3", "C"); // printing the Collection System.out.println("Sorted Map : " + map); // create a sorted map SortedMap<String, String> sortedmap = Collections .synchronizedSortedMap(map); // printing the map System.out.println("Synchronized sorted map is :" + sortedmap); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Sorted Map : {1=A, 2=B, 3=C} Synchronized sorted map is :{1=A, 2=B, 3=C}
Ejemplo 2:
// Java program to demonstrate // synchronizedSortedMap() method // for <Integer, Boolean> Value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of SortedMap<Integer, Boolean> SortedMap<Integer, Boolean> map = new TreeMap<Integer, Boolean>(); // populate the map map.put(100, true); map.put(200, true); map.put(300, true); // printing the Collection System.out.println("Sorted Map : " + map); // create a sorted map SortedMap<Integer, Boolean> sortedmap = Collections .synchronizedSortedMap(map); // printing the map System.out.println("Synchronized sorted map is :" + sortedmap); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Sorted Map : {100=true, 200=true, 300=true} Synchronized sorted map is :{100=true, 200=true, 300=true}
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA