Question: java program for: Package-delivery services, offer a number of different shipping options, each with specific costs associated. Create an inheritance hierarchy to represent various types

java program for: Package-delivery services, offer a number of different shipping options, each with specific costs associated. Create an inheritance hierarchy to represent various types of packages. Use Package as the base class of the hierarchy, then include classes TwoDayPackage and OvernightPackage that derive from Package. Base class Package should include data members representing the name and address for both the sender (type Person) and the recipient (tye Person) of the package, in addition to data members that store the weight (in ounces) and cost per ounce to ship the package. Package's constructor should initialize these data members. Ensure that the weight and cost per ounce contain positive values. Package should provide a public member function calculateCost() that returns a double indicating the cost associated with shipping the package. Package's calculateCost() function should determine the cost by multiplying the weight by the cost per ounce. Derived class TwoDayPackage should inherit the functionality of base class Package, but also include a data member that represents a fee that the shipping company charges for two-day-delivery service. TwoDayPackage'sconstructor should receive a value to initialize this data member. TwoDayPackage should redefine member function calculateCost() so that it computes the shipping cost by adding the flat fee to the cost calculated by base class Package's calculateCost() function. Class OvernightPackage should inherit from class Package and contain an additional data member representing an additionalfee charged for overnight-delivery service. OvernightPackage should redefine member function calculateCost() so that it computes the shipping cost by adding the additionalfee to the cost calculated by base class Package's calculateCost() function. Write a test program that creates objects of each type of Package and tests member function calculateCost() using polymorphism.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!