class Person{
private void print(){
System.out.println("Person -> void print()") ;
}
public void fun(){
this.print() ;
}
}
class Student extends Person{
void print(){
System.out.println("Student -> public void print()") ;
}
}
public class OverrideDemo02{
public static void main(String args[]){
new Student().fun() ;
}
}
运行结果为:
Person -> void print() 请教下为什么。
添加回答
举报
0/150
提交
取消