El método lastIndexOf() de Booleans Class en la biblioteca Guava se usa para encontrar el último índice del valor booleano dado en una array booleana. Este valor booleano que se buscará y la array booleana en la que se buscará, ambos se pasan como parámetro a este método. Devuelve un valor entero que es el último índice del valor booleano especificado. Si no se encuentra el valor, devuelve -1.
Sintaxis:
public static int lastIndexOf(boolean[] array, boolean target)
Parámetros: Este método acepta dos parámetros obligatorios:
- array: que es la array de valores booleanos en la que se busca el valor booleano.
- objetivo: que es el valor booleano que se buscará en el último índice de la array booleana.
Valor devuelto: este método devuelve un valor entero que es el último índice del valor booleano especificado. Si no se encuentra el valor, devuelve -1.
Los siguientes programas ilustran este método:
Ejemplo 1:
// Java code to show implementation of // Guava's Booleans.lastIndexOf() 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 = { true, false, false, true, true }; boolean target = true; // Using Booleans.lastIndexOf() method // to get the index of last appearance // of a given element in array // and return -1 if element // is not found in the array int index = Booleans.lastIndexOf(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"); } } }
Target is present at index 4
Ejemplo-2:
// Java code to show implementation of // Guava's Booleans.lastIndexOf() 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 = { true, true, true, true, true }; boolean target = false; // Using Booleans.lastIndexOf() method to get the // index of last appearance of a given element // in array and return -1 if element is // not found in the array int index = Booleans.lastIndexOf(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"); } } }
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