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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import COM.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Counting provides algorithms for tabulating the elements of a container.
  6.  *
  7.  * @see COM.objectspace.jgl.Counting
  8.  * @version 2.0.2
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class Algorithms3
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     SList list = new SList();
  17.     list.add( new Integer( -1 ) );
  18.     list.add( new Integer( 1 ) );
  19.     list.add( new Integer( -2 ) );
  20.     list.add( new Integer( 1 ) );
  21.     list.add( new Integer( -3 ) );
  22.     System.out.println( "list = " + list );
  23.  
  24.     Object value = new Integer( 1 );
  25.     int n1 = Counting.count( list, value );
  26.     System.out.println( "Occurences of " + value + " = " + n1 );
  27.  
  28.     int n2 = Counting.countIf( list, new NegativeNumber() );
  29.     System.out.println( "Occurences of a negative = " + n2 );
  30.     }
  31.   }
  32.