home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-30 | 443 b | 17 lines |
- // Copyright(c) 1996,1997 ObjectSpace, Inc.
- import COM.objectspace.jgl.*;
-
- public class Overview4
- {
- public static void main( String[] args )
- {
- Array array = new Array();
- array.add( new Integer( 3 ) );
- array.add( new Integer( -1 ) );
- array.add( new Integer( 2 ) );
- System.out.println( "Unsorted Array = " + array );
- Sorting.sort( array );
- System.out.println( "Sorted = " + array );
- }
- }
-