Question: Derive a class CombinedDiscount from DiscountPolicy, as described in Exercise 10. It should have a constructor that has two parameters of type DiscountPolicy. It should
Derive a class CombinedDiscount from DiscountPolicy, as described in Exercise 10. It should have a constructor that has two parameters of type DiscountPolicy. It should define the method computeDiscount to return the maximum value returned by computeDiscount for each of its two private discount policies. The two discount policies are described in Exercises 11 and 12.
Exercise 10.
Create an abstract class DiscountPolicy. It should have a single abstract method computeDiscount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost.
Step by Step Solution
3.43 Rating (169 Votes )
There are 3 Steps involved in it
public class CombinedDiscount extends DiscountPolicy private DiscountPolicy policy1 private Discount... View full answer
Get step-by-step solutions from verified subject matter experts
