Thursday, September 4, 2025
HomeLanguagesJavaLinkedList addLast() Method in Java

LinkedList addLast() Method in Java

The java.util.LinkedList.addLast() method in Java is used to insert a specific element at the end of a LinkedList.
Syntax: 
 

void addLast(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 end of the list.
Return Value: This method does not return any value.
Below program illustrate the Java.util.LinkedList.addLast() method: 
 

Java




// Java code to illustrate boolean addLast()
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 current list
      System.out.println("The list is:" + list);
 
      // Adding new elements at the end of list using addLast()
      list.addLast("At");
      list.addLast("Last");
 
      // 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:[Geeks, for, Geeks, 10, 20, At, Last]

 

RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6746 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS