Get the element from LinkedList

ReturnMethodSummary
Eget(int index)Returns the element at the specified position in this list.
EgetFirst()Returns the first element in this list.
EgetLast()Returns the last element in this list.

  import java.util.LinkedList;

public class Main{
    public static void main(String args[]) {
        LinkedList<String> ll = new LinkedList<String>();

        ll.add("A");
        ll.add("ja v a2s.com");
        ll.add("B");
        ll.add("C");


        System.out.println(ll.get(1));
        System.out.println(ll.getLast());
        System.out.println(ll.getFirst());
    }
}

The output:


ja v a2s.com
C
A
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.