El método lastIndexOf() de Floats Class en la biblioteca Guava se usa para encontrar el último índice del valor flotante dado en una array flotante. Este valor flotante que se buscará y la array flotante 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 flotante especificado. Si no se encuentra el valor, devuelve -1.
Sintaxis:
public static int lastIndexOf(float[] array, float target)
Parámetros: Este método acepta dos parámetros obligatorios:
- array: que es la array de valores flotantes en la que se busca el valor flotante.
- objetivo: que es el valor flotante que se buscará para el último índice en la array flotante.
Valor devuelto: este método devuelve un valor entero que es el último índice del valor flotante 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 Floats.lastIndexOf() method import com.google.common.primitives.Floats; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a float array float[] arr = { 1.2f, 2.2f, 3.2f, 4.2f, 3.2f, 5.6f, 3.2f, 4.4f }; float target = 3.2f; // Using Floats.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 = Floats.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 6
Ejemplo 2:
// Java code to show implementation of // Guava's Floats.lastIndexOf() method import com.google.common.primitives.Floats; import java.util.Arrays; class GFG { // Driver's code public static void main(String[] args) { // Creating a float array float[] arr = { 1.2f, 2.2f, 3.2f, 4.2f, 3.2f, 5.6f, 3.2f, 4.4f }; float target = 10.2f; // Using Floats.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 = Floats.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