Java Collection Tutorial - Java LinkedList.push(E e)








Syntax

LinkedList.push(E e) has the following syntax.

public void push(E e)

Example

In the following code shows how to use LinkedList.push(E e) method.

/*from  w  w w . ja v  a2 s.  c  om*/
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);

      // push Element the list
      list.push("Element");

      // print the list
      System.out.println("LinkedList:" + list);
   }
}

The code above generates the following result.