VOOZH about

URL: https://www.geeksforgeeks.org/java/java-guava-floats-lastindexof-method-with-examples/

⇱ Java Guava | Floats.lastIndexOf() method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Guava | Floats.lastIndexOf() method with Examples

Last Updated : 11 Jul, 2025
The lastIndexOf() method of Floats Class in Guava library is used to find the last index of the given float value in a float array. This float value to be searched and the float array in which it is to be searched, both are passed as a parameter to this method. It returns an integer value which is the last index of the specified float value. If the value is not found, it returns -1. Syntax:
public static int lastIndexOf(float[] array,
 float target)
Parameters: This method accepts two mandatory parameters:
  • array: which is the array of float values in which the float value is to searched.
  • target: which is float value to be searched for last index in the float array.
Return Value: This method returns an integer value which is the last index of the specified float value. If the value is not found, it returns -1. Below programs illustrates this method: Example 1:
Output:
Target is present at index 6
Example 2:
Comment