Colecciones del métodocheckSortedSet() en Java con ejemplos

El métodocheckedSortedSet() de la clase java.util.Collections se utiliza para devolver una vista con seguridad de tipos dinámica del conjunto ordenado especificado.
El conjunto ordenado devuelto será serializable si el conjunto ordenado especificado es serializable.
Dado que nulo se considera un valor de cualquier tipo de referencia, el conjunto ordenado devuelto permite la inserción de elementos nulos siempre que lo haga el conjunto ordenado de respaldo.
Sintaxis: 
 

public static  SortedSet checkedSortedSet(SortedSet s, Class type)

Parámetros: este método toma el siguiente argumento como parámetro: 
 

  • s: el conjunto ordenado para el que se devolverá una vista con seguridad de tipo dinámica
  • tipo: el tipo de elemento que s puede contener

Valor devuelto: este método devuelve una vista con seguridad de tipo dinámica del conjunto ordenado especificado.
A continuación se muestran los ejemplos para ilustrar el métodocheckSortedSet ()
Ejemplo 1: 
 

Java

// Java program to demonstrate
// checkedSortedSet() method
// for String value
 
import java.util.*;
 
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
 
        try {
 
            // creating object of SortedMap<String>
            SortedSet<String> sset = new TreeSet<String>();
 
            // Adding element to smap
            sset.add("Ram");
            sset.add("Gopal");
            sset.add("Verma");
 
            // printing the sorted set
            System.out.println("Sorted Set: " + sset);
 
            // create typesafe view of the specified set
            // using checkedSortedSet() method
            SortedSet<String>
                tsset = Collections
                            .checkedSortedSet(sset, String.class);
 
            // printing the typesafe view of specified set
            System.out.println("Typesafe view of sorted set: \n"
                               + tsset);
        }
 
        catch (IllegalArgumentException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción: 

Sorted Set: [Gopal, Ram, Verma]
Typesafe view of sorted set: 
[Gopal, Ram, Verma]

 

Ejemplo 2: 
 

Java

// Java program to demonstrate
// checkedSortedSet() method
// for Integer value
 
import java.util.*;
 
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
        try {
 
            // creating object of SortedSet<Integer>
            SortedSet<Integer> sset = new TreeSet<Integer>();
 
            // Adding element to smap
            sset.add(20);
            sset.add(30);
            sset.add(40);
 
            // printing the sorted set
            System.out.println("Sorted Set: " + sset);
 
            // create typesafe view of the specified set
            // using checkedSortedSet() method
            SortedSet<Integer> tsset = Collections.checkedSortedSet(sset, Integer.class);
 
            // printing the typesafe view of specified set
            System.out.println("Typesafe view of sorted set: \n"
                               + tsset);
        }
 
        catch (IllegalArgumentException e) {
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción: 

Sorted Set: [20, 30, 40]
Typesafe view of sorted set: 
[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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *