Friday 7 November 2014

Java : Collection Framework : LinkedList (Push method)


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

LinkedListPushExample.java
import java.util.LinkedList;

/*
 * Example of push() method
 */
public class LinkedListPushExample
{

    public static void main( String[] args )
    {
        LinkedList<Integer> linkedList = new LinkedList<Integer>();
        linkedList.add(200);
        linkedList.add(300);
        linkedList.add(10000);
        linkedList.add(5000);
        
        System.out.println("linkedList : " + linkedList + "\n");

        /*
         * Pushes an element onto the stack represented by this list. In other
         * words, inserts the element at the front of this list.
         */
        linkedList.push(100);
        System.out.println("linkedList : " + linkedList + "\n");

    }
}

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

linkedList : [100, 200, 300, 10000, 5000]

To Download LinkedListDemoPush Project Click the below link

https://sites.google.com/site/javaee4321/java-collections/LinkedListDemoPush.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