Mega Code Archive

 
Categories / Java / Collections Data Structure
 

Demonstration of Stack Class

// : c11:Stacks.java // Demonstration of Stack Class. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. import java.util.Stack; public class Stacks {   public static void main(String[] args) {     Stack stack = new Stack();     for (int i = 0; i < 10; i++)       stack.push(new Integer(i));     System.out.println("stack = " + stack);     // Treating a stack as a Vector:     stack.addElement("The last line");     System.out.println("element 5 = " + stack.elementAt(5));     System.out.println("popping elements:");     while (!stack.empty())       System.out.println(stack.pop());   } } ///:~