ilminottaken

Untitled

Oct 5th, 2017
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. // Fig. 8.9: EmployeeTest.java
  2. // Composition demonstration.
  3.  
  4. public class EmployeeTest
  5. {
  6.     public static void main( String[] args )
  7.     {
  8.         Date birth = new Date( 7, 24, 1949 );
  9.         Date hire = new Date( 3, 12, 1988 );
  10.         Employee employee = new Employee( "Bob", "Blue", birth, hire );
  11.  
  12.         System.out.println( employee );
  13.  
  14.  
  15.     } // end main
  16. } // end class EmployeeTest
Add Comment
Please, Sign In to add comment