Topic: 继承问题 (X is not abstract ...) [错字问题,可以不理]

  Print this page

1.继承问题 (X is not abstract ...) [错字问题,可以不理] Copy to clipboard
Posted by: pgty
Posted on: 2004-10-25 17:57

{ 标题应该简明清晰 }
原题:问一个继承问题 大哥们来帮我看看

代码如下 { 请用 code tag,选禁用笑脸 Disable Smileys }

import java.text.*;

public class PersonTest
{
public static void main(String[] args)
{
Person[] people = new Person[2];
people[0]=new Employee("Harry Hacker",50000);
people[1]= new Student("Maria Morris","computer science");
for(int i=0;i<people.length;i++)
{
Person p=people[i];
System.out.println(p.getName() +","+p.getDesctiption());
}
}
}

abstract class Person
{
private String name;
public Person(String n)
{
name=n;
}
public abstract String getDesctiption();
public String getName()
{
return name;
}

}

class Employee extends Person
{
private double salary;
public Employee(String n,double s)
{
super(n);
salary=s;
}
public double getSalary()
{
return salary;
}
public String getDescription()
{
NumberFormat formatter= NumberFormat.getCurrencyInstance();
return "an employee with a salary of "+ formatter.format(salary);
}

public void raiseSalary(double byPercent)
{
double raise = salary * byPercent / 100;
salary +=raise;
}
}

class Student extends Person
{
public Student(String n,String m)
{
super(n);
major=m;
}
public String getDescription()
{
return "a student majoring in" + major;
}
private String major;
}

错误如下:
---------- javac ----------
PersonTest.java:36: Employee is not abstract and does not override abstract method getDesctiption() in Person
class Employee extends Person
^
PersonTest.java:60: Student is not abstract and does not override abstract method getDesctiption() in Person
class Student extends Person
^
2 errors

输出完成 (耗时 8 秒) - 正常终止

怎么解决啊

2.Re:问一个继承问题大哥们来帮我看看 [Re: pgty] Copy to clipboard
Posted by: qingbo777
Posted on: 2004-10-25 18:04

第36行的public String getDescription(),应该是public String getDestcription()
少了一个"t".

3.Re:继承问题 (X is not abstract and does not override abstract method ..) [Re: pgty] Copy to clipboard
Posted by: pgty
Posted on: 2004-10-25 18:05

谢谢啊

手误

4.Re:继承问题 (X is not abstract and does not override abstract method ..) [Re: pgty] Copy to clipboard
Posted by: why
Posted on: 2004-10-25 18:09

System.out.println(p.getName() +","+p.getDesctiption());

public abstract String getDesctiption();

public String getDescription()

public String getDescription()

提问题前请先检查错字!!!
下次再有这类纯粹由错字引起的问题,见即删,以免浪费坛友的时间。


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923