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 >
Wrap
Text File
|
1998-05-08
|
428b
|
18 lines
// Copyright(c) 1996,1997 ObjectSpace, Inc.
import com.objectspace.jgl.*;
public class Stacks2
{
public static void main( String[] args )
{
// Use a DList as the underlying data structure.
Stack stack = new Stack( new DList() );
stack.push( "bat" );
stack.push( "cat" );
stack.push( "dog" );
System.out.println( "Print the Stack." );
System.out.println( stack );
}
}