Core Java Tutorial

Core Java Tutorial

LinkedList Example Program for getFirst()

[java]
/**
Author :candidjava.com
Description: Returns the first element in the list.
*/
import java.io.IOException;
import java.util.*;
public class LinkedListGetFirst
{
public static void main(String args[])
{
int b=60,c=20,d=30;
LinkedList l=new LinkedList();
l.add(b);
l.add(c);
l.add(d);
System.out.println("First element in the list is");
System.out.println(l.getFirst());
}
}
[/java]

 

Output:

First element in the list is
60