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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5.  
  6. public class Overview6
  7.   {
  8.   public static void main( String[] args )
  9.     {
  10.     int ints[] = { 3, -1, 2 };
  11.     IntArray intArray = new IntArray( ints );
  12.     System.out.println( "Unsorted native int array = " + intArray );
  13.  
  14.     Sorting.sort( intArray );
  15.     System.out.print( "Sorted native array = " );
  16.     for ( int i = 0; i < ints.length; i++ )
  17.       System.out.print( ints[ i ] + " " );
  18.     System.out.println();
  19.     }
  20.   }
  21.