Java Collection Tutorial - Java LinkedList.pop()








Syntax

LinkedList.pop() has the following syntax.

public E pop()

Example

In the following code shows how to use LinkedList.pop() method.

/*from  ww  w. j  ava2  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);

      // pop the list
      System.out.println("Pop element in the list:" + list.pop());

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

The code above generates the following result.