up vote 7 down vote favorite
3
share [g+] share [fb]

I'm working on a class that inherits from another class, but I'm getting a compiler error saying "Cannot find symbol constructor Account()". Basically what I'm trying to do is make a class InvestmentAccount which extends from Account - Account is meant to hold a balance with methods for withdrawing/depositing money and InvestmentAccount is similar, but the balance is stored in shares with a share price determining how many shares are deposited or withdrawn given a particular amount of money. Here's the first few lines (around where the compiler pointed out the problem) of the subclass InvestmentAccount:

public class InvestmentAccount extends Account
{
protected int sharePrice;
protected int numShares;
private Person customer;

public InvestmentAccount(Person customer, int sharePrice)
{
	this.customer = customer;
	sharePrice = sharePrice;
}
// etc...

The Person class is held in another file (Person.java). Now here's the first few lines of the superclass Account:

public class Account 
{
private Person customer;
protected int balanceInPence;

public Account(Person customer)
{
	this.customer = customer;
	balanceInPence = 0;
}
// etc...

Is there any reason why the compiler isn't just reading the symbol constructor for Account from the Account class? Or do I need to define a new constructor for Account within InvestmentAccount, which tells it to inherit everything?

Thanks

link|improve this question

feedback

5 Answers

up vote 18 down vote accepted

use super(customer) in InvestmentAccounts constructor.

Java can not know how to call the only constructor Account has, because it's not an empty constructor. You can omit super() only if your base class has an empty constuctor.

Change

public InvestmentAccount(Person customer, int sharePrice)
{
        this.customer = customer;
        sharePrice = sharePrice;
}

to

public InvestmentAccount(Person customer, int sharePrice)
{
        super(customer);
        sharePrice = sharePrice;
}

that will work.

link|improve this answer
As I rule I always put the super() call in my constructor when applicable.. – eljenso Feb 4 '09 at 10:41
feedback

You have to invoke the superclass constructor, otherwise Java won't know what constructor you are calling to build the superclass on the subclass.

public class InvestmentAccount extends Account {
    protected int sharePrice;
    protected int numShares;
    private Person customer;

    public InvestmentAccount(Person customer, int sharePrice) {
        super(customer);
        this.customer = customer;
        sharePrice = sharePrice;
    }
}
link|improve this answer
feedback

Call the super() method. If you want to call the Account(Person) constructor, use the statement super(customer); Also this should be the first statment in your InvestmentAccount constructor

link|improve this answer
Not “should be” but “has to”. – Bombe Feb 4 '09 at 11:15
feedback

You have to call the constructor of the base class explicitly if the base class doesn't have a default constructor (one with no arguments).

In your case, the constructor should be:

public InvestmentAccount(Person customer, int sharePrice) {
    super(customer);
    sharePrice = sharePrice;
}

And don't redefine customer as an instance variable of the subclass!

link|improve this answer
feedback

Either define a default constructor in the Account class:

public Account() {}

Or call super(customer) in the InvestmentAccount constructor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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