home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-09-10 | 956 b | 33 lines |
- // Copyright(c) 1996 ObjectSpace, Inc.
-
- import jgl.*;
-
- /**
- * Printing an JGL container and a native array of primitives.
- * <p>
- * @see jgl.Printing
- * @version 1.1
- * @author ObjectSpace, Inc.
- */
-
- public class Printing1
- {
- public static void main( String[] args )
- {
- String[] strings = { "gnu", "emu", "dog" };
- ObjectIterator objectBegin = ObjectIterator.begin( strings );
- ObjectIterator objectEnd = ObjectIterator.end( strings );
- System.out.println( "strings = " + Printing.toString( objectBegin, objectEnd ) );
- System.out.print( "strings = " );
- Printing.println( objectBegin, objectEnd );
-
- int[] ints = { 3, 4, 7 };
- IntIterator intBegin = IntIterator.begin( ints );
- IntIterator intEnd = IntIterator.end( ints );
- System.out.println( "ints = " + Printing.toString( intBegin, intEnd ) );
- System.out.print( "ints = " );
- Printing.println( intBegin, intEnd );
- }
- }
-
-