Ints .asList() de Guava devuelve una lista de tamaño fijo respaldada por la array especificada.
Sintaxis:
public static List<Integer> asList(int[] array)
Parámetros: este método toma la array como parámetro, que es la array para respaldar la lista.
Valor devuelto: este método devuelve una lista de tamaño fijo respaldada por la array especificada.
Ejemplo 1:
// Java code to show implementation of // Guava's Ints.asList() method import com.google.common.primitives.Ints; import java.util.List; class GFG { // Driver's code public static void main(String[] args) { // Creating an integer array int arr[] = { 1, 2, 3, 4, 5 }; // Using Ints.asList() method to wrap // the specified primitive Integer array // as a List of the Integer type List<Integer> myList = Ints.asList(arr); // Displaying the elements in List System.out.println("List of given array: " + myList); } }
Producción:
List of given array: [1, 2, 3, 4, 5]
Ejemplo 2:
// Java code to show implementation of // Guava's Ints.asList() method import com.google.common.primitives.Ints; import java.util.List; class GFG { // Driver's code public static void main(String[] args) { // Creating an integer array int arr[] = { 3, 5, 7 }; // Using Ints.asList() method to wrap // the specified primitive Integer array // as a List of the Integer type List<Integer> myList = Ints.asList(arr); // Displaying the elements in List System.out.println("List of given array: " + myList); } }
Producción:
List of given array: [3, 5, 7]
Referencia: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Ints.html#asList-int…-
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