El método Booleans.indexOf(boolean[] array, boolean[] target) de la clase Booleans de Guava acepta dos parámetros array y target . Si el destino existe dentro de la array, el método devuelve la posición de inicio de su primera aparición . Si el destino no existe dentro de la array, el método devuelve -1 .
Sintaxis:
public static int indexOf(boolean[] array, boolean[] target)
Parámetros: El método acepta dos parámetros:
- array: una array para buscar el destino de la secuencia.
- objetivo: una array para buscar como una subsecuencia de la array.
Valor devuelto: El método devuelve:
- Posición de inicio de la primera aparición del destino, si el destino existe en la array.
- -1 si el objetivo no existe en 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 Booleans.indexOf(boolean[] array, // boolean[] target) method import com.google.common.primitives.Booleans; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a boolean array boolean[] arr = { false, true, false, false, true }; boolean[] target = { false, false }; // Using indexOf(boolean[] array, boolean[] target) // method to get the start position of the first // occurrence of the specified target within array, // or -1 if there is no such occurrence. int index = Booleans.indexOf(arr, target); if (index != -1) { System.out.println("Target is present at index " + index); } else { System.out.println("Target is not present " + "in the array"); } } }
Ejemplo 2:
// Java code to show implementation of // Guava's Booleans.indexOf(boolean[] array, // boolean[] target) method import com.google.common.primitives.Booleans; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a boolean array boolean[] arr = { false, true, false, false, true }; boolean[] target = { false, false, false }; // Using indexOf(boolean[] array, boolean[] target) // method to get the start position of the first // occurrence of the specified target within array, // or -1 if there is no such occurrence. int index = Booleans.indexOf(arr, target); if (index != -1) { System.out.println("Target is present at index " + index); } else { System.out.println("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