El métodocheckSet() de la clase java.util.Collections se utiliza para devolver una vista con seguridad de tipo dinámica del conjunto especificado.
El conjunto devuelto será serializable si el conjunto especificado es serializable.
Dado que nulo se considera un valor de cualquier tipo de referencia, el conjunto devuelto permite la inserción de elementos nulos siempre que lo haga el conjunto de respaldo.
Sintaxis:
public static Set checkedSet(Set s, Class type)
Parámetros: este método toma el siguiente argumento como parámetro
- s: el conjunto para el que se devolverá una vista con seguridad de tipo dinámica
- type: el tipo de elemento que s puede contener
Valor devuelto: este método devuelve una vista con seguridad de tipo dinámica del conjunto especificado.
A continuación se muestran los ejemplos para ilustrar el métodocheckSet()
Ejemplo 1:
Java
// Java program to demonstrate // checkedSet() method // for String value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of Set<String> Set<String> hset = new TreeSet<String>(); // Adding element to hmap hset.add("Ram"); hset.add("Gopal"); hset.add("Verma"); // print the set System.out.println("Set: " + hset); // create typesafe view of the specified set Set<String> tsset = Collections .checkedSet(hset, String.class); // printing the typesafe view of specified list System.out.println("Typesafe view of Set: " + tsset); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Set: [Gopal, Ram, Verma] Typesafe view of Set: [Gopal, Ram, Verma]
Ejemplo 2:
Java
// Java program to demonstrate // checkedSet() method // for Integer value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of Set<Integer> Set<Integer> hset = new TreeSet<Integer>(); // Adding element to hset hset.add(20); hset.add(30); hset.add(40); // print the set System.out.println("Set: " + hset); // create typesafe view of the specified set Set<Integer> tsset = Collections .checkedSet(hset, Integer.class); // printing the typesafe view of specified list System.out.println("Typesafe view of Set: " + tsset); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Set: [20, 30, 40] Typesafe view of 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