Java Collection Tutorial - Java Vector.listIterator()








Syntax

Vector.listIterator() has the following syntax.

public ListIterator <E> listIterator()

Example

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

// w  w  w .ja  v a  2s.c o m
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();
      while(it.hasNext()){
        System.out.println(it.next());
      }
   } 
}

The code above generates the following result.