home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-30 | 568 b | 26 lines |
- // Copyright(c) 1997 ObjectSpace, Inc.
-
- import COM.objectspace.jgl.*;
-
- /**
- * Sum the values of a range.
- *
- * @see COM.objectspace.jgl.Counting
- * @version 2.0.2
- * @author ObjectSpace, Inc.
- */
-
- public class Counting1
- {
- public static void main( String[] args )
- {
- int intArray[] = { 1, 2, 3, 4, 5 };
- IntIterator begin = IntIterator.begin( intArray );
- IntIterator end = IntIterator.end( intArray );
-
- Number sum = Counting.accumulate( begin, end, new Integer( 0 ) );
-
- System.out.println( "Sum = " + sum );
- }
- }
-