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]