Guava’s Ints .contains() devuelve verdadero si el objetivo está presente como un elemento en cualquier lugar de la array.
Sintaxis:
public static boolean contains(int[] array, int target)
Parámetros: Este método acepta los siguientes parámetros:
- array: una array de valores int, posiblemente vacía.
- objetivo: un valor int primitivo.
Valor devuelto: este método devuelve un valor booleano. Devuelve True si array[i] == objetivo para algún valor de i.
Ejemplo 1:
Java
// Java code to show implementation of // Guava's Ints.contains() method import com.google.common.primitives.Ints; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating an Integer array int[] arr = { 5, 4, 3, 2, 1 }; int target = 3; // Using Ints.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Ints.contains(arr, target)) System.out.println("Target is present" + " in the array"); else System.out.println("Target is not present" + " in the array"); } }
Producción:
Target is present in the array
Ejemplo 2:
Java
// Java code to show implementation of // Guava's Ints.contains() method import com.google.common.primitives.Ints; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating an Integer array int[] arr = { 2, 4, 6, 8, 10 }; int target = 7; // Using Ints.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Ints.contains(arr, target)) System.out.println("Target is present" + " in the array"); else System.out.println("Target is not present" + " in the array"); } }
Producción:
Target is not present in the array
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