Java Collection Tutorial - Java Vector.lastIndexOf(Object o, int index)








Syntax

Vector.lastIndexOf(Object o, int index) has the following syntax.

public int lastIndexOf(Object o,  int index)

Example

In the following code shows how to use Vector.lastIndexOf(Object o, int index) method.

//from  w  w w  . j a  va2s. c om
import java.util.Vector;

public class Main {
   public static void main(String[] args) {
           
      Vector  vec = new Vector  (6);

      
      vec.add(6);
      vec.add(5);
      vec.add(4);
      vec.add(3);
      vec.add(2);
      vec.add(1);

      System.out.println("index is: "+vec.lastIndexOf(1,4));                 
   }
}

The code above generates the following result.