problem in extending a class
Posted
by Vineeth
on Stack Overflow
See other posts from Stack Overflow
or by Vineeth
Published on 2010-05-22T06:53:22Z
Indexed on
2010/05/22
7:00 UTC
Read the original article
Hit count: 223
java
there are two classes
public class Account { public Acconut() { //constructor
}
}
public class SavingsAccount extends Account {
}
while doing the inheritance i have got an error message "cannont find symbol Symbol: constructor Account()" what might be the error in my code...??
© Stack Overflow or respective owner