Question: create a java program Create a class named Movie that can be used with your video rental business. The Movie class should have ID Number,
create a java program Create a class named Movie that can be used with your video rental business. The Movie class should have ID Number, and movie title with appropriate getter() and setter() methods. Also create an equal() method that overrides Object s equals() method, where two movies are equal if their ID number is identical. Next, create three additional classes named Action, Comedy, and Drama that are derived from Movie. Finally, create an overridden method named calcLateFees() that takes as input the number of days a movie is late and returns the late fee for that movie. The default late fee is Rs. 100/day. Action movies have a late fee of Rs. 30/day, comedies are Rs. 20/day, and dramas are Rs. 10/day. Test your classes from a main method.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
