Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Fig. 8.9: EmployeeTest.java
- * Composition demonstration
- *
- * Benito Danneswara
- * 6 March 2017
- */
- public class EmployeeTest
- {
- public static void main (String[] args)
- {
- Date birth = new Date (7, 24, 1949);
- Date hire = new Date (3, 12, 1998);
- Employee employee = new Employee ("Bob", "Blue", birth, hire);
- System.out.println (employee);
- } // end main
- } // end class EmployeeTest
Advertisement
Add Comment
Please, Sign In to add comment