El método Ints .concat() de Guava se usa para combinar las arrays pasadas como parámetros en una sola array. Este método devuelve los valores de cada array proporcionada combinados en una sola array. Por ejemplo, concat(new int[] {a, b}, new int[] {}, new int[] {c} devuelve la array {a, b, c}.
Sintaxis:
public static int[] concat(int[]... arrays)
Parámetros: este método toma arrays como parámetro que representa cero o más arrays int.
Valor devuelto: este método devuelve una sola array que contiene todos los valores de las arrays de origen, en orden.
Ejemplo 1:
// Java code to show implementation of // Guava's Ints.concat() method import com.google.common.primitives.Ints; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating 2 Integer arrays int[] arr1 = { 1, 2, 3, 4, 5 }; int[] arr2 = { 6, 2, 7, 0, 8 }; // Using Ints.concat() method to combine // elements from both arrays into a single array int[] res = Ints.concat(arr1, arr2); // Displaying the single combined array System.out.println("Combined Array: " + Arrays.toString(res)); } }
Combined Array: [1, 2, 3, 4, 5, 6, 2, 7, 0, 8]
Ejemplo 2:
// Java code to show implementation of // Guava's Ints.concat() method import com.google.common.primitives.Ints; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating 4 Integer arrays int[] arr1 = { 1, 2, 3 }; int[] arr2 = { 4, 5 }; int[] arr3 = { 6, 7, 8 }; int[] arr4 = { 9, 0 }; // Using Ints.concat() method to combine // elements from both arrays into a single array int[] res = Ints.concat(arr1, arr2, arr3, arr4); // Displaying the single combined array System.out.println("Combined Array: " + Arrays.toString(res)); } }
Combined Array: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
Referencia: https://google.github.io/guava/releases/22.0/api/docs/com/google/common/primitives/Ints.html#concat-int:A…-
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