Open In App
Related Articles

LinkedList addFirst() Method in Java

Improve Article
Improve
Save Article
Save
Like Article
Like

The java.util.LinkedList.addFirst() method in Java is used to insert a specific element at the beginning of a LinkedList.

Syntax:

void addFirst(Object element)

Parameters: This function accepts a single parameter element as shown in the above syntax. The element specified by this parameter is appended at beginning of the list.

Return Value: This method does not returns any value.

Below program illustrate the java.util.LinkedList.addFirst() method:




// Java code to illustrate addFirst() method of class LinkedList
  
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");
  
        // Output the present list
        System.out.println("The list is:" + list);
  
        // Adding new elements at the beginning
        list.addFirst("First");
        list.addFirst("At");
  
        // Displaying the new list
        System.out.println("The new List is:" + list);
    }
}


Output:

The list is:[Geeks, for, Geeks, 10, 20]
The new List is:[At, First, Geeks, for, Geeks, 10, 20]
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