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:
// Java code to illustrate get() method import java.io.*; import java.util.LinkedList;   public class LinkedListDemo {    public static void main(String args[]) {         // Creating an empty LinkedList       LinkedList<String> list = new LinkedList<String>();         // Use add() method to add elements in the list       list.add( "Geeks" );       list.add( "for" );       list.add( "Geeks" );       list.add( "10" );       list.add( "20" );         // Displaying the list       System.out.println( "LinkedList:" + list);               // Fetching the specific element from the list       System.out.println( "The element is: " + list.get( 2 ));      } } |
LinkedList:[Geeks, for, Geeks, 10, 20] The element is: Geeks