El métodosynchroncedSortedSet() de la clase java.util.Collections se utiliza para devolver un conjunto ordenado sincronizado (seguro para subprocesos) respaldado por el conjunto ordenado especificado. Para garantizar el acceso en serie, es fundamental que todo acceso al conjunto ordenado de respaldo se realice a través del conjunto ordenado devuelto (o sus vistas).
Sintaxis:
public static <T> SortedSet<T> synchronizedSortedSet(SortedSet<T> s)
Parámetros: este método toma el conjunto ordenado como un parámetro para «envolverlo» en un conjunto ordenado sincronizado.
Valor devuelto: este método devuelve una vista sincronizada del conjunto ordenado especificado.
A continuación se muestran los ejemplos para ilustrar el métodosynchronizedSortedSet()
Ejemplo 1:
// Java program to demonstrate // synchronizedSortedSet() method // for <String> Value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of SortedSet<String> SortedSet<String> set = new TreeSet<String>(); // populate the set set.add("A"); set.add("B"); set.add("C"); set.add("D"); // printing the Collection System.out.println("Sorted Set : " + set); // create a synchronized sorted set SortedSet<String> sorset = Collections .synchronizedSortedSet(set); // printing the set System.out.println("Sorted set is : " + sorset); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Sorted Set : [A, B, C, D] Sorted set is : [A, B, C, D]
Ejemplo 2:
// Java program to demonstrate // synchronizedSortedSet() method // for <Integer> Value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of SortedSet<String> SortedSet<Integer> set = new TreeSet<Integer>(); // populate the set set.add(10); set.add(20); set.add(30); set.add(40); // printing the Collection System.out.println("Sorted Set : " + set); // create a synchronized sorted set SortedSet<Integer> sorset = Collections .synchronizedSortedSet(set); // printing the set System.out.println("Sorted set is : " + sorset); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Sorted Set : [10, 20, 30, 40] Sorted set is : [10, 20, 30, 40]
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA