Java LinkedList.offerFirst(E e)
Syntax
LinkedList.offerFirst(E e) has the following syntax.
public boolean offerFirst(E e)
Example
In the following code shows how to use LinkedList.offerFirst(E e) method.
import java.util.LinkedList;
// www. j a v a 2 s. c o m
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);
// offer a new element as the head of the list
list.offerFirst("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 »