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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Reserving capacity.
  6.  *
  7.  * @see com.objectspace.jgl.Array
  8.  * @version 3.0.0
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class Array4
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     Object ints[] = { "bat", "cat", "dog" };
  17.     Array array = new Array( ints );
  18.     array.put( 1, "CAT" );
  19.     System.out.println( "array = " + array + ", capacity = " + array.capacity() );
  20.     System.out.print( "array = " );
  21.     for ( int i = 0; i < ints.length; i++ )
  22.       System.out.print( ints[ i ] + " " );
  23.     System.out.println();
  24.  
  25.     array.ensureCapacity( 100 );
  26.     array.put( 2, "DOG" );
  27.     System.out.println( "array = " + array + ", capacity = " + array.capacity() );
  28.     System.out.print( "array = " );
  29.     for ( int i = 0; i < ints.length; i++ )
  30.       System.out.print( ints[ i ] + " " );
  31.     System.out.println();
  32.     }
  33.   }
  34.