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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. public class Stacks2
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     // Use a DList as the underlying data structure.
  9.     Stack stack = new Stack( new DList() );
  10.     stack.push( "bat" );
  11.     stack.push( "cat" );
  12.     stack.push( "dog" );
  13.  
  14.     System.out.println( "Print the Stack." );
  15.     System.out.println( stack );
  16.     }
  17.   }
  18.