Skip to content

Instantly share code, notes, and snippets.

@alohasoftworks
Created December 7, 2009 21:40
Show Gist options
  • Select an option

  • Save alohasoftworks/251144 to your computer and use it in GitHub Desktop.

Select an option

Save alohasoftworks/251144 to your computer and use it in GitHub Desktop.
List myList = new ArrayList();
list.add("Hello");
list.add("World");
ListIterator li = list.listIterator();
while (li.hasNext())
{
System.out.println((String)li.next());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment