Your preferences have been saved!
» This program demonstrates inheritance - import java.util.Date; import java.util.GregorianCalendar; /**  * This program demonstrates inheritance.  *   * @version 1.21 2004-02-21  * @author Cay Horstmann  */ public class ManagerTest {   public static void main(String[] args) {... 17 Feb 12 » Subclass definition - import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; public class ObjectRefTest {   public static void main(String[] args) {     try {       Employee[] staff = new Employee[3];       Employee harry = new Employee("Harry Sample", 35000);... 17 Feb 12