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
import java.io.*;
import java.util.LinkedList;
public class LinkedListDemo {
public static void main(String args[]) {
LinkedList<String> list = new LinkedList<String>();
list.add( "Geeks" );
list.add( "for" );
list.add( "Geeks" );
list.add( "10" );
list.add( "20" );
System.out.println( "The list is:" + list);
list.addLast( "At" );
list.addLast( "Last" );
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]