The listIterator(int) method of Stack Class is used to return a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list. The specified index indicates the first element that would be returned by an initial call to next. An initial call to previous would return the element with the specified index minus one. The returned list iterator is fail-fast.
Syntax:
public ListIterator listIterator(int index)
Parameters: This method takes the index of the first element as a parameter to be returned from the list iterator (by a call to next)
Return Value: This method returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list.
Exception: This method throws IndexOutOfBoundsException if the index is out of range (index size()).
Below are the examples to illustrate the listIterator() method.
Example 1:
import java.util.*;
public class GFG1 {
public static void main(String[] argv) throws Exception
{
try {
Stack<String> stack = new Stack<String>();
stack.add( "A" );
stack.add( "B" );
stack.add( "C" );
stack.add( "D" );
System.out.println( "Stack: "
+ stack);
ListIterator<String>
iterator = stack.listIterator( 2 );
System.out.println( "\nUsing ListIterator"
+ " from Index 2:\n" );
while (iterator.hasNext()) {
System.out.println( "Value is : "
+ iterator.next());
}
}
catch (IndexOutOfBoundsException e) {
System.out.println( "Exception thrown : " + e);
}
}
}
|
Output:
Stack: [A, B, C, D]
Using ListIterator from Index 2:
Value is : C
Value is : D
Example 2: For IndexOutOfBoundsException
import java.util.*;
public class GFG1 {
public static void main(String[] argv) throws Exception
{
try {
Stack<String>
stack = new Stack<String>();
stack.add( "A" );
stack.add( "B" );
stack.add( "C" );
stack.add( "D" );
System.out.println( "Stack: "
+ stack);
System.out.println( "Size of Stack: "
+ stack.size());
System.out.println( "Trying to getListIterator"
+ " from index 7\n" );
ListIterator<String>
iterator = stack.listIterator( 7 );
}
catch (IndexOutOfBoundsException e) {
System.out.println( "Exception thrown : " + e);
}
}
}
|
Output:
Stack: [A, B, C, D]
Size of Stack: 4
Trying to getListIterator from index 7
Exception thrown : java.lang.IndexOutOfBoundsException: Index: 7
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
24 Dec, 2018
Like Article
Save Article