El método singletonList() de la clase java.util.Collections se usa para devolver una lista inmutable que contiene solo el objeto especificado. La lista devuelta es serializable. Esta lista siempre contendrá solo un elemento, por lo tanto, el nombre lista singleton. Cuando intentamos agregar/eliminar un elemento en la lista de singleton devuelta, daría una excepción de operación no admitida.
Sintaxis:
public static List singletonList(T o)
Parámetros:
This method takes the object o as a parameter to be stored in the returned list.
Valor devuelto:
This method returns an immutable list containing only the specified object.
A continuación se muestran los ejemplos para ilustrar el método singletonList()
Ejemplo 1:
Java
// Java program to demonstrate // singletonList() method // for <String> Value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // create singleton list // using method singletonList() method List<String> list = Collections.singletonList("E"); // print the list System.out.println("singletonList : " + list); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Producción
singletonList : [E]
Ejemplo 2:
Java
// Java program to demonstrate // singletonList() method // for <Integer> Value import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // create singleton list // using method singletonList() method List<Integer> list = Collections.singletonList(20); // print the list System.out.println("singletonList : " + list); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
Producción
singletonList : [20]
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA