在Java中,父类可以引用指向子类对象,这种特性称为多态性。具体实现方式如下:
class Parent {
public void display() {
System.out.println("This is the parent class.");
}
}
class Child extends Parent {
@Override
public void display() {
System.out.println("This is the child class.");
}
}
Parent parent = new Child();
parent.display();
在上面的代码中,父类Parent的引用parent指向子类Child的对象。当调用display()方法时,实际上会调用子类Child中的display()方法,因为多态性允许父类引用指向子类对象,并且调用子类重写的方法。