home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / HashMap4.java < prev    next >
Text File  |  1997-07-30  |  1KB  |  48 lines

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