Java LinkedList.getFirst()
Syntax
LinkedList.getFirst() has the following syntax.
public E getFirst()
Example
In the following code shows how to use LinkedList.getFirst() method.
/*www . ja v a2 s .c o m*/
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);
// print the first element of the list
System.out.println("First Element :" + list.getFirst());
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »