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

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