Java LinkedList.addLast(E e)
Syntax
LinkedList.addLast(E e) has the following syntax.
public void addLast(E e)
Example
In the following code shows how to use LinkedList.addLast(E e) method.
//w w w . jav a 2 s .c om
import java.util.LinkedList;
public class Main {
public static void main(String[] args) {
// create a LinkedList
LinkedList<String> list = new LinkedList<String>();
// add some elements
list.add("Hello");
list.add("from java2s.com");
list.add("10");
// print the list
System.out.println("LinkedList:" + list);
// add a new element at the end of the list
list.addLast("Element");
// print the new list
System.out.println("LinkedList:" + list);
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »