Java Vector.lastIndexOf(Object o)
Syntax
Vector.lastIndexOf(Object o) has the following syntax.
public int lastIndexOf(Object o)
Example
In the following code shows how to use Vector.lastIndexOf(Object o) method.
/*from www .j a v a 2 s.c o m*/
import java.util.Vector;
public class Main {
public static void main(String[] args) {
Vector vec = new Vector (6);
vec.add(4);
vec.add(3);
vec.add(2);
vec.add(1);
vec.add(2);
vec.add(1);
// let us print the last index of 1
System.out.println("last index :"+vec.lastIndexOf(1));
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »