Java Collection Tutorial - Java ArrayList.listIterator(int index)








Syntax

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

public ListIterator <E> listIterator(int index)

Example

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

//  w w w. j  a v  a 2  s .c  o  m

import java.util.ArrayList;
import java.util.ListIterator;

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

    
    ListIterator<Integer> iterator = arrlist.listIterator(2);
    while(iterator.hasNext()){
      Integer i = iterator.next();
      iterator.remove();
      
    }
    System.out.println(arrlist);

  }
}

The code above generates the following result.