Improve the appointment book program of Exercises P9.6 and P9.7 by letting the user save the appointment

Question:

Improve the appointment book program of Exercises P9.6 and P9.7 by letting the user save the appointment data to a file and reload the data from a file. The saving part is straightforward: Make a method save. Save the type, description, and date to a file. The loading part is not so easy. First determine the type of the appointment to be loaded, create an object of that type, and then call a load method to load the data.

Data from Exercises P9.7

Improve the appointment book program of Exercise P9.6. Give the user the option to add new appointments. The user must specify the type of the appointment, the description, and the date.


Data from Exercise P9.6.

Implement a superclass Appointment and subclasses Onetime, Daily, and Monthly. An appointment has a description (for example, “see the dentist”) and a date. Write a method occursOn(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill an array of Appointment objects with a mixture of appointments. Have the user enter a date and print out all appointments that occur on that date.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: