Java Vector.listIterator(int index)

Syntax

Vector.listIterator(int index) has the following syntax.

public ListIterator <E> listIterator(int index)

Example

In the following code shows how to use Vector.listIterator(int index) method.


/*  w w w .  j a v  a 2s .c  om*/

import java.util.ListIterator;
import java.util.Vector;

public class Main {
   public static void main(String[] args) {
      Vector<Integer>  vec = new Vector<Integer>();
      
      vec.add(4);
      vec.add(3);
      vec.add(2);
      vec.add(1);

      System.out.println(vec);    
      
      ListIterator<Integer> it = vec.listIterator(2);
      while(it.hasNext()){
        System.out.println(it.next());
      }
   } 
}

The code above generates the following result.