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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Counting, finding, erasing.
  6.  *
  7.  * @see com.objectspace.jgl.HashMap
  8.  * @version 3.0.0
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class HashMap6
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     HashMap map = new HashMap( true ); // allow duplicates
  17.     map.add( "cat", "Meow" );
  18.     map.add( "ape", "Squeak" );
  19.     map.add( "ape", "Whoop" );
  20.     map.add( "bat", "Squeak" );
  21.     System.out.println( map );
  22.  
  23.     System.out.println( "map.count( ape ) = " + map.count( "ape" ) );
  24.     HashMapIterator i = map.find( "ape" );
  25.  
  26.     if ( i.equals( map.end() ) ) // A simpler way: if ( i.atEnd() ) ...
  27.       {
  28.       System.out.println( "Could not find dog." );
  29.       }
  30.     else
  31.       {
  32.       while ( !i.atEnd() && i.key().equals( "ape" ) )
  33.         {
  34.         System.out.println( "Found " + i.get() );
  35.         i.advance();
  36.         }
  37.       }
  38.     System.out.println( "map.remove( ape ) = " + map.remove( "ape" ) );
  39.     HashMapIterator j = map.find( "ape" );
  40.     if ( j.atEnd() ) // A simpler way: if ( j.equals( map.end() ) ) ...
  41.       System.out.println( "Could not find ape." );
  42.     else
  43.       System.out.println( "Found " + j.get() );
  44.     }
  45.   }
  46.