The Java.util.LinkedList.get() method is used to fetch or retrieve an element at a specific index from a LinkedList.
Syntax:
LinkedList.get(int index)
Parameters: The parameter index is of integer data type that specifies the position or index of the element to be fetched from the LinkedList.
Return Value: The method returns the element present at the position specified by the parameter index.
Below program illustrate the Java.util.LinkedList.get() method:
import java.io.*;
import java.util.LinkedList;
public class LinkedListDemo {
public static void main(String args[]) {
LinkedList<String> list = new LinkedList<String>();
list.add( "Geeks" );
list.add( "for" );
list.add( "Geeks" );
list.add( "10" );
list.add( "20" );
System.out.println( "LinkedList:" + list);
System.out.println( "The element is: " + list.get( 2 ));
}
}
|
Output:
LinkedList:[Geeks, for, Geeks, 10, 20]
The element is: Geeks