Question: Assume that we change the CreditCard class (see Code Fragment 1.5) so that instance variable balance has private visibility. Why is the following implementation of
Assume that we change the CreditCard class (see Code Fragment 1.5) so that instance variable balance has private visibility. Why is the following implementation of the PredatoryCreditCard.charge method flawed?

public boolean charge(double price) { boolean isSuccess = super.charge(price); if (lisSuccess) super.charge(5); return isSuccess; } // the penalty
Step by Step Solution
3.34 Rating (160 Votes )
There are 3 Steps involved in it
The goal is to assess a 5 charg... View full answer
Get step-by-step solutions from verified subject matter experts
