home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Stacks1.java < prev    next >
Text File  |  1998-05-08  |  735b  |  27 lines

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. public class Stacks1
  6.   {
  7.   public static void main( String[] args )
  8.     {
  9.     Stack stack = new Stack();
  10.     stack.push( "bat" );
  11.     stack.push( "cat" );
  12.     stack.push( "dog" );
  13.     System.out.println( "stack = " + stack );
  14.     System.out.println();
  15.  
  16.     System.out.println( "Non-destructively enumerate the Stack." );
  17.     Enumeration e = stack.elements();
  18.     while ( e.hasMoreElements() )
  19.       System.out.println( e.nextElement() );
  20.     System.out.println();
  21.  
  22.     System.out.println( "Pop and print each element." );
  23.     while ( !stack.isEmpty() )
  24.       System.out.println( stack.pop() );
  25.     }
  26.   }
  27.