Friday 7 November 2014

Java : Collection Framework : LinkedList (Get Object using element method)


Click here to watch in Youtube : https://www.youtube.com/watch?v=1-VEjW8vAvA

LinkedListExample.java
import java.util.LinkedList;

/*
 * Example of element() method
 */
public class LinkedListExample
{

    public static void main(String[] args)
    {
        LinkedList<Integer> linkedList = new LinkedList<Integer>();
        linkedList.add(200);
        linkedList.add(300);
        linkedList.add(10000);
        linkedList.add(5000);
        linkedList.add(2000);

        System.out.println("linkedList : " + linkedList + "\n");

        /*
         * Retrieves, but does not remove, the head (first element) of this
         * list.
         */

        Integer value = linkedList.element();
        System.out.println(value);

        System.out.println("\nAfter calling element method :  linkedList : "
                + linkedList + "\n");

    }

}

Output
linkedList : [200, 300, 10000, 5000, 2000]

200

After calling element method :  linkedList : [200, 300, 10000, 5000, 2000]

To Download LinkedListDemoElement Project Click the below link

https://sites.google.com/site/javaee4321/java-collections/LinkedListDemoElement.zip?attredirects=0&d=1

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • No comments:

    Post a Comment