有一个Person类,它有Scientist ,和Teacher 两个子类。
根据以下程序片段,编写Scientist ,和Teacher 两个子类。
在Person当中,有个allSalary方法。
用Scientist 对象调用这个方法的时,输出Scientist 的工资。
用Teacher 对象调用这个方法的时候,输出Teacher 的工资。
有一个Person类,它有Scientist ,和Teacher 两个子类。
根据以下程序片段,编写Scientist ,和Teacher 两个子类。
在Person当中,有个allSalary方法。
用Scientist 对象调用这个方法的时,输出Scientist 的工资。
用Teacher 对象调用这个方法的时候,输出Teacher 的工资。
java 继承和重写去看看
class Person{
public int salary;
public int allSalary(){
return 0;
}
}
class Scientist extend Person{
public int allSalary(){
return 1000;
}
}
class Teacher extend Person{
public int allSalary(){
return 2000;
}
}
有错的你自己改