El método Bytes.contains() de la clase Bytes de Guava acepta dos parámetros array y target . El método se utiliza para verificar si el elemento de destino está presente en la array o no.
Sintaxis:
public static boolean contains(byte[] array, byte target)
Parámetros: El método acepta dos parámetros:
- array: una array de valores de bytes, posiblemente vacía.
- destino: un valor de byte primitivo que se debe verificar si está presente en la array o no.
Valor devuelto: el método devuelve verdadero si el objetivo está presente como un elemento en cualquier parte de la array y devuelve falso si el objetivo no está presente en ninguna parte de la array.
Excepciones: el método no arroja ninguna excepción.
Los siguientes ejemplos ilustran la implementación del método anterior:
Ejemplo 1:
// Java code to show implementation of // Guava's Bytes.contains() method import com.google.common.primitives.Bytes; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a Byte array byte[] arr = { 5, 4, 3, 2, 1 }; byte target = 3; // Using Bytes.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Bytes.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 Bytes.contains() method import com.google.common.primitives.Bytes; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a Byte array byte[] arr = { 2, 4, 6, 8, 10 }; byte target = 7; // Using Bytes.contains() method to search // for an element in the array. The method // returns true if element is found, else // returns false if (Bytes.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