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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. /**
  6.  * Construction, enumeration, access, acceptance of duplicates.
  7.  *
  8.  * @see com.objectspace.jgl.HashMap
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class HashMap4
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     HashMap map = new HashMap( true ); // allow duplicates
  18.     map.add( new Integer( 2 ), "two" );
  19.     map.add( new Integer( 4 ), "four" );
  20.     System.out.println( map );
  21.     System.out.println();
  22.  
  23.     System.out.println( "Enumerate the HashMap" );
  24.     Enumeration e = map.elements();
  25.     while ( e.hasMoreElements() )
  26.       System.out.println( e.nextElement() );
  27.     System.out.println();
  28.  
  29.     System.out.println( "Iterate through the HashMap" );
  30.     for ( HashMapIterator i = map.begin(); !i.atEnd(); i.advance() )
  31.       System.out.println( i.get() + ", key = " + i.key() + ", value = " + i.value() );
  32.     System.out.println();
  33.  
  34.     System.out.println( "Show that duplicates can be added." );
  35.     map.add( new Integer( 8 ), "eight" );
  36.     System.out.println( "map = " + map );
  37.  
  38.     map.add( new Integer( 4 ), "FOUR" );
  39.     System.out.println( "map = " + map );
  40.  
  41.     System.out.println( "Show that even with duplicates, put() does a replacement." );
  42.     map.put( new Integer( 4 ), "FoUr" );
  43.     System.out.println( "map = " + map );
  44.  
  45.     }
  46.   }
  47.