Skip to content

Instantly share code, notes, and snippets.

@mpaltun
Created October 22, 2012 08:12
Show Gist options
  • Save mpaltun/3930270 to your computer and use it in GitHub Desktop.
Save mpaltun/3930270 to your computer and use it in GitHub Desktop.
List<String> list = new ArrayList<String>();
list.add("a");
list.add("b");
list.add("c");
list.add("d");
ListIterator<String> listIterator = list.listIterator(2);
while (listIterator.hasNext())
{
System.out.println(listIterator.next());
}
// prints
// c
// d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment