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.
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.
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