home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Counting1.java < prev    next >
Text File  |  1998-05-08  |  659b  |  27 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.  * Sum the values of a range.
  8.  *
  9.  * @see com.objectspace.jgl.algorithms.Counting
  10.  * @version 3.0.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Counting1
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     int intArray[] = { 1, 2, 3, 4, 5 };
  19.     IntIterator begin = IntIterator.begin( intArray );
  20.     IntIterator end = IntIterator.end( intArray );
  21.  
  22.     Number sum = Counting.accumulate( begin, end, new Integer( 0 ) );
  23.  
  24.     System.out.println( "Sum = " + sum );
  25.     }
  26.   }
  27.