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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. /**
  6.  * Construction, enumeration, pushing, popping.
  7.  *
  8.  * @see com.objectspace.jgl,Stack
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Stack1
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     // Use an Slist as the underlying data structure.
  18.     Stack stack = new Stack();
  19.     stack.push( "bat" );
  20.     stack.push( "cat" );
  21.     stack.push( "dog" );
  22.  
  23.     System.out.println( "Print the Stack." );
  24.     System.out.println( stack );
  25.     System.out.println();
  26.  
  27.     System.out.println( "Non-destructively enumerate the Stack." );
  28.     Enumeration e = stack.elements();
  29.     while ( e.hasMoreElements() )
  30.       System.out.println( e.nextElement() );
  31.     System.out.println();
  32.  
  33.     System.out.println( "Pop and print each element." );
  34.     while ( !stack.isEmpty() )
  35.       System.out.println( stack.pop() );
  36.     }
  37.   }
  38.