Shorts.contains() es un método de la clase Shorts en la biblioteca Guava que se usa para verificar si un objetivo de valor está presente como un elemento en cualquier lugar de la array. Tanto el valor objetivo como la array se toman como parámetros para este método. Devuelve un valor booleano que indica si el valor objetivo está presente o no.
Sintaxis:
public static boolean contains(short[] array, short target)
Parámetros: este método toma dos parámetros obligatorios:
- array: que es una array de valores cortos en los que se buscará el objetivo. Posiblemente también esté vacío.
- target: que es el valor corto primitivo que debe buscarse en la array.
Valor devuelto: este método devuelve un valor booleano que indica si el valor de destino está presente en la array o no. Devuelve True si el destino está presente.
Los siguientes programas ilustran el uso del método anterior:
Ejemplo 1 :
// Java code to show implementation of // Guava's Shorts.contains() method import com.google.common.primitives.Shorts; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a short array short[] arr = { 5, 4, 3, 2, 1 }; short target = 3; // Using Shorts.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Shorts.contains(arr, target)) System.out.println("Target is present in the array"); else System.out.println("Target is not present in the array"); } }
Target is present in the array
Ejemplo 2:
// Java code to show implementation of // Guava's Shorts.contains() method import com.google.common.primitives.Shorts; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a short array short[] arr = { 2, 4, 6, 8, 10 }; short target = 7; // Using Shorts.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Shorts.contains(arr, target)) System.out.println("Target is present in the array"); else System.out.println("Target is not present in the array"); } }
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