// Fig. 8.6: Time2Test.java // Overloaded constructors used to initialize Time2 objects. public class Time2Test { public static void main( String args[] ) { Time2 t1 = new Time2(); // 00:00:00 Time2 t2 = new Time2( 2 ); // 02:00:00 Time2 t3 = new Time2( 21, 34 ); // 21:34:00 Time2 t4 = new Time2( 12, 25, 42 ); // 12:25:42 Time2 t5 = new Time2( 27, 74, 99 ); // 00:00:00 Time2 t6 = new Time2( t4 ); // 12:25:42 System.out.println( "Constructed with:" ); System.out.println( "t1: all arguments defaulted" ); System.out.printf( " %s\n", t1.toUniversalString() ); System.out.printf( " %s\n", t1.toString() ); System.out.println( "t2: hour specified; minute and second defaulted" ); System.out.printf( " %s\n", t2.toUniversalString() ); System.out.printf( " %s\n", t2.toString() ); System.out.println( "t3: hour and minute specified; second defaulted" ); System.out.printf( " %s\n", t3.toUniversalString() ); System.out.printf( " %s\n", t3.toString() ); System.out.println( "t4: hour, minute and second specified" ); System.out.printf( " %s\n", t4.toUniversalString() ); System.out.printf( " %s\n", t4.toString() ); System.out.println( "t5: all invalid values specified" ); System.out.printf( " %s\n", t5.toUniversalString() ); System.out.printf( " %s\n", t5.toString() ); System.out.println( "t6: Time2 object t4 specified" ); System.out.printf( " %s\n", t6.toUniversalString() ); System.out.printf( " %s\n", t6.toString() ); } // end main } // end class Time2Test /************************************************************************** * (C) Copyright 1992-2005 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * *************************************************************************/