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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.predicates.*;
  4.  
  5. public class Maps6
  6.   {
  7.   public static void main( String[] args )
  8.     {
  9.     Integer i1 = new Integer( 2 );
  10.     Integer i2 = new Integer( 2 );
  11.  
  12.     HashMap map1 = new HashMap();
  13.     System.out.println( "Using equals() to compare elements..." );
  14.     System.out.println( "map1.add( i1, two ) = " + map1.add( i1, "two" ) );
  15.     System.out.println( "map1.add( i1, two ) = " + map1.add( i1, "two" ) );
  16.     System.out.println( "map1.add( i2, TWO ) = " + map1.add( i2, "TWO" ) );
  17.     System.out.println( "map1.get( i1 ) = " + map1.get( i1 ) );
  18.     System.out.println( "map1.get( i2 ) = " + map1.get( i2 ) );
  19.  
  20.     HashMap map2 = new HashMap( new IdenticalTo() );
  21.     System.out.println( "Using == to compare elements..." );
  22.     System.out.println( "map2.add( i1, two ) = " + map2.add( i1, "two" ) );
  23.     System.out.println( "map2.add( i1, two ) = " + map2.add( i1, "two" ) );
  24.     System.out.println( "map2.add( i2, TWO ) = " + map2.add( i2, "TWO" ) );
  25.     System.out.println( "map2.get( i1 ) = " + map2.get( i1 ) );
  26.     System.out.println( "map2.get( i2 ) = " + map2.get( i2 ) );
  27.     }
  28.   }
  29.