class Person
{
Person(){}
void show(){System.out.println("hahaha");}
void method(){}
}
class Student extends Person
{
void show(){System.out.println("haha");}
void print(){}
}
Student类就是复写了Person类中的show()方法,当new一个Student调用show()方法就是输出的haha....
感觉也说不清,大概就这样,我的理解 |