El método Longs.contains() de la clase Longs de Guava se usa para verificar si un valor, es decir, el objetivo, está presente en la array o no. Este valor objetivo y la array se toman como parámetros para este método. Y este método devuelve un valor booleano que indica si el valor objetivo es
Sintaxis:
public static boolean contains(long[] array, long target)
Parámetros: Este método acepta dos parámetros:
- array: que es la array de valores en la que se buscará el valor objetivo
- objetivo: que es el valor largo que se comprobará para presencia.
Valor devuelto: el método devuelve True si para algún valor de i, el valor presente en el i -ésimo índice es igual al objetivo; de lo contrario, devuelve False .
Excepciones: el método no arroja ninguna excepción.
Ejemplo 1:
// Java code to show implementation of // Guava's Longs.contains() method import com.google.common.primitives.Longs; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a long array long[] arr = { 5L, 4L, 3L, 2L, 1L }; long target = 3L; // Using Longs.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Longs.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 code to show implementation of // Guava's Longs.contains() method import com.google.common.primitives.Longs; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a long array long[] arr = { 2L, 4L, 6L, 8L, 10L }; long target = 7L; // Using Longs.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Longs.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