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

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5.  
  6. /**
  7.  * Adapt a primitive array to algorithms and to a buffer.
  8.  *
  9.  * @see com.objectspace.jgl.util.ArrayAdapter
  10.  * @version 3.0.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Adapters3
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     // start with a native array
  19.     float floats[] = { 3.0f, -1.1f, 2.0f, -3.1f, 4.0f };
  20.     System.out.print( "native = " );
  21.     Printing.println( FloatIterator.begin( floats ), FloatIterator.end( floats ) );
  22.  
  23.     // FloatArray affects the underlying array
  24.     FloatArray floatArray = new FloatArray( floats );
  25.     System.out.println( "Unsorted = " + floatArray );
  26.     Sorting.sort( floatArray );
  27.     System.out.println( "Sorted = " + floatArray );
  28.     Shuffling.randomShuffle( floatArray );
  29.     System.out.println( "Randomized = " + floatArray );
  30.     System.out.print( "native = " );
  31.     Printing.println( FloatIterator.begin( floats ), FloatIterator.end( floats ) );
  32.  
  33.     // FloatBuffer does not affect the underlying array
  34.     FloatBuffer floatBuffer = new FloatBuffer( floats );
  35.     System.out.println( "Unsorted = " + floatBuffer );
  36.     Sorting.sort( floatBuffer );
  37.     System.out.println( "Sorted = " + floatBuffer );
  38.     Shuffling.randomShuffle( floatBuffer );
  39.     System.out.println( "Randomized = " + floatBuffer );
  40.     System.out.print( "native = " );
  41.     Printing.println( FloatIterator.begin( floats ), FloatIterator.end( floats ) );
  42.  
  43.     // Buffers are growable
  44.     floatBuffer.insert( 3, 5.6f );
  45.     System.out.println( "Inserted = " + floatBuffer );
  46.     floatBuffer.remove( 1, 3 );
  47.     System.out.println( "Removed = " + floatBuffer );
  48.  
  49.     // and return to a native array
  50.     floats = floatBuffer.get();
  51.     System.out.print( "native = " );
  52.     Printing.println( FloatIterator.begin( floats ), FloatIterator.end( floats ) );
  53.     }
  54.   }
  55.