home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Replacing1.java < prev    next >
Text File  |  1998-05-08  |  1KB  |  38 lines

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5. import com.objectspace.jgl.predicates.*;
  6. import com.objectspace.jgl.util.*;
  7.  
  8. /**
  9.  * Replacing an element in a native array of primitives, copy during replacement.
  10.  *
  11.  * @see com.objectspace.jgl.algorithms.Replacing
  12.  * @version 3.0.0
  13.  * @author ObjectSpace, Inc.
  14.  */
  15.  
  16. public class Replacing1
  17.   {
  18.   public static void main( String[] args )
  19.     {
  20.     int intArray[] = { 3, 6, 2, 1, 9, 6, 4, 2 };
  21.     IntArray i = new IntArray( intArray );
  22.     System.out.print( "Before: " );
  23.     Printing.println( i.start(), i.finish() );
  24.     Replacing.replace( i.start(), i.finish(), new Integer( 6 ), new Integer( 0 ) );
  25.     System.out.print( "After: " );
  26.     Printing.println( i.start(), i.finish() );
  27.  
  28.     Array array = new Array();
  29.     array.add( "ape" );
  30.     array.add( "cat" );
  31.     array.add( "bat" );
  32.     array.add( "cat" );
  33.     Deque deque = new Deque();
  34.     Replacing.replaceCopy( array, new InsertIterator( deque ), "cat", "emu" );
  35.     System.out.println( "array = " + array + ", deque = " + deque );
  36.     }
  37.   }
  38.