Saturday, September 6, 2025
HomeLanguagesJavaLinkedList get() Method in Java

LinkedList get() Method in Java

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));
  
   }
}


Output:

LinkedList:[Geeks, for, Geeks, 10, 20]
The element is: Geeks
RELATED ARTICLES

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS