多態(tài):
多態(tài)實(shí)現(xiàn)的三大要素:
- 要有繼承關(guān)系
- 子類要重寫父類的方法
- 父類引用指向子類對大刊。
eg:
class People(){
void say(){
System.out.println("我是父類");
}
}
public class Student extends People(){
void say(){
System.out.println("我是子類");
}
}
People student = new Student();
student.say();