Easy Tutorial
❮ Thread Deadlock Exception Overloaded Method ❯

Java Example - Retrieving Elements from a LinkedList

Java Examples

The following example demonstrates how to retrieve elements from a LinkedList using the top() and pop() methods:

Main.java File

import java.util.*;

public class Main {
   private LinkedList list = new LinkedList();
   public void push(Object v) {
      list.addFirst(v);
   }
   public Object top() {
      return list.getFirst();
   }
   public Object pop() {
      return list.removeFirst();
   }
   public static void main(String[] args) {
      Main stack = new Main();
      for (int i = 30; i < 40; i++)
         stack.push(new Integer(i));
      System.out.println(stack.top());
      System.out.println(stack.pop());
      System.out.println(stack.pop());
      System.out.println(stack.pop());
   }
}

The output of the above code is:

39
39
38
37

Java Examples

❮ Thread Deadlock Exception Overloaded Method ❯