home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Counting3.java < prev    next >
Text File  |  1997-07-30  |  748b  |  30 lines

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2.  
  3. import COM.objectspace.jgl.*;
  4.  
  5. /**
  6.  * Calculate and sum the difference between adjacent pairs of values.
  7.  *
  8.  * @see COM.objectspace.jgl.Counting
  9.  * @version 2.0.2
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Counting3
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     // create sample array
  18.     int intArray[] = { 1, 2, 4, 8, 16 };
  19.     IntIterator begin = IntIterator.begin( intArray );
  20.     IntIterator end = IntIterator.end( intArray );
  21.     Printing.println( begin, end );
  22.  
  23.     // make sure destination hase enough space allocated
  24.     Array array = new Array( 5 );
  25.  
  26.     Counting.adjacentDifference( begin, end, array.start() );
  27.     Printing.println( array );
  28.     }
  29.   }
  30.