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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. /**
  6.  * Construction, enumeration, rejection of duplicates.
  7.  *
  8.  * @see com.objectspace.jgl.HashSet
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class HashSet1
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     HashSet set = new HashSet();
  18.     set.add( new Integer( 6 ) );
  19.     set.add( new Integer( 1 ) );
  20.     set.add( new Integer( 4 ) );
  21.     System.out.println( set );
  22.     System.out.println();
  23.  
  24.     System.out.println( "Enumerate the HashSet" );
  25.     Enumeration e = set.elements();
  26.     while ( e.hasMoreElements() )
  27.       System.out.println( e.nextElement() );
  28.     System.out.println();
  29.  
  30.     System.out.println( "Iterate through the HashSet" );
  31.     for ( HashSetIterator i = set.begin(); !i.atEnd(); i.advance() )
  32.       System.out.println( i.get() );
  33.     System.out.println();
  34.  
  35.     System.out.println( "Show that duplicates cannot be added." );
  36.     Object value = set.add( new Integer( 8 ) );
  37.     if ( value != null )
  38.       System.out.println( "Could not add 8." );
  39.     else
  40.       {
  41.       System.out.println( "Added 8" );
  42.       System.out.println( "New contents are " + set );
  43.       }
  44.  
  45.     value = set.add( new Integer( 4 ) );
  46.     if ( value != null )
  47.       System.out.println( "Could not add 4." );
  48.     else
  49.       {
  50.       System.out.println( "Added 4." );
  51.       System.out.println( "New contents are " + set );
  52.       }
  53.     }
  54.   }
  55.