Ints .toArray() de Guava devuelve una array que contiene cada valor de la colección, convertido a un valor int a la manera de Number.intValue()
Sintaxis:
public static int[] toArray(Collection<? extends Number> collection)
Parámetros: este método toma la colección como parámetro, que es una colección de instancias de números .
Valor devuelto: este método devuelve una array que contiene los mismos valores que la colección, en el mismo orden, convertidos a primitivos.
Excepciones: este método arroja NullPointerException si la colección o cualquiera de sus elementos es nulo.
Los siguientes ejemplos ilustran el método Ints.toArray():
Ejemplo 1:
// Java code to show implementation of // Guava's Ints.toArray() method import com.google.common.primitives.Ints; import java.util.Arrays; import java.util.List; class GFG { // Driver's code public static void main(String[] args) { // Creating a List of Integers List<Integer> myList = Arrays.asList(1, 2, 3, 4, 5); // Using Ints.toArray() method to convert // a List or Set of Integer to an array // of Int int[] arr = Ints.toArray(myList); // Displaying an array containing each // value of collection, // converted to a int value System.out.println("Array from given List: " + Arrays.toString(arr)); } }
Array from given List: [1, 2, 3, 4, 5]
Ejemplo 2: Para demostrar NullPointerException
// Java code to show implementation of // Guava's Ints.toArray() method import com.google.common.primitives.Ints; import java.util.Arrays; import java.util.List; class GFG { // Driver's code public static void main(String[] args) { try { // Creating a List of Integers List<Integer> myList = Arrays.asList(2, 4, null); // Using Ints.toArray() method to convert // a List or Set of Integer to an array // of Int. This should raise "NullPointerException" // as the collection contains "null" as an element int[] arr = Ints.toArray(myList); // Displaying an array containing each // value of collection, converted to a int value System.out.println(Arrays.toString(arr)); } catch (Exception e) { System.out.println("Exception: " + e); } } }
Exception: java.lang.NullPointerException
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA