有两个班级
public class Account
{
public Acconut()
{
//constructor
}
}
public class SavingsAccount extends Account
{
}
在进行继承时我收到了一条错误消息“找不到符号符号:构造函数Account()”我的代码中可能出现错误...... ??
答案 0 :(得分:6)
代码中的拼写错误:
public Acconut()
而不是
public Account()