Home Tutorial Java Iterator Java Previous Iterator

 
 

Java Previous Iterator
Posted on: November 4, 2009 at 12:00 AM
In this section of tutorial we will learn how to use the previous method with the listIterator interface. We will create an example to display the contents of the ArrayList using previous method.

  • Java previous Iterator function is present in the listIterator Interface.
  • ListIterator is special iterator for the list.
  • previuos method allows to get the one before element of the list.
  • listIterator allows traversing in the both direction.


Java Previous Iterate Example
import java.util.ArrayList;
import java.util.ListIterator;

public class previous {

	public static void main(String[] args) {
		char alphabet = 'a';
		ArrayList list = new ArrayList();
		while (alphabet != 'z') {
			list.add(alphabet++);
		}
		
		ListIterator it = list.listIterator();
		while (it.hasNext()) {
			it.next();
		}
		while(it.hasPrevious())
		{
			System.out.print(it.previous()+"  ");
		}
	}
}

Output

y x w v u t s r q p o n m l k j i h g f e d c b a

Related Tags for Java Previous Iterator:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.