Open In App
Related Articles

LinkedList get() Method in Java

Improve Article
Improve
Save Article
Save
Like Article
Like

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
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 : 10 Dec, 2018
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials