Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The superclass is Account, and I have two subclasses - CurrentAccount and SavingsAccount.

The superclass will have a method applyInterest(), which will calculate the interest using the rate specified by an inherited class. I don't know how to force a class to define this though.

The only option I can think of is to force the subclasses to implement applyInterest(), and just set the rate in there.

share|improve this question

3 Answers

up vote 5 down vote accepted

I'm not sure if I understand your question, but I think you may use the keyword abstract if you don't want to introduce an interface

public abstract class Account
{
    public int applyInterest()
    {
        return 10 * getInterestRate();
    }
    abstract protected int getInterestRate();
}

public class CurrentAccount extends Account
{
    protected int getInterestRate() { return 2; }
}

public class SavingsAccount extends Account
{
    protected int getInterestRate() { return 3; }
}

import static org.junit.Assert.assertTrue;
import org.junit.Test;
public class AccountTest
{
   @Test
   public void currentAccount()
   {
       Account ca = new CurrentAccount();
       assertTrue(ca.applyInterest()==20);
   }
   @Test
   public void savingsAccount()
   {   
       Account sa = new SavingsAccount();
       assertTrue(sa.applyInterest()==30);
   }
}
share|improve this answer

You could force the subclasses to implement getInterestRate(), if that is preferable.

share|improve this answer
Indeed. make the superclass abstract with the abstract interestRate() method. This is a better design than implementing applyInterest() in both subclasses (the subclass doesn't define the way how to apply the interest rate, as I understood from the question). – khachik Nov 17 '10 at 11:43
So each type of account must implement it's own interestRate() method, which will contain one line setting the rate? The interestRate() method may not even be called, so the rate may be left at zero. – Matt Nov 17 '10 at 11:50
The suggestion is that the superclass, in applyInterest(), calls getInterestRate() from the subclass in question. This allows each subclass to specify its interest rate, but keeps the logic in one place (applyInterest) in case you need to change it (for example, to alter the rounding behaviour). – Matthew Wilson Nov 17 '10 at 12:59

The best solution is to make the class Account as abstract. If you don't want to do this for any reason (then, Account must be instantiable) you can write:

applyInterest(){
throw new RuntimeException("Not yield implemented");//or another Exception: IllegalState, NoSuchMethodException, etc
}

Really, it's not the best idea in the world (the best idea is to make Account as abstract class), but when you test the subclass of Account and call the applyInterest(), this exception force you to implement this method in the subclass.

It's just another way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.