Concept
1. 하향 변환은 상위 클래스 개체를 하위 클래스 개체로 변환하는 것입니다. 상위 클래스에서 Bird 유형 참조로 Animal 유형 참조를 제공합니다.
2 형식은
子类 子类对象=(子类)父类实例
Note
반드시 강제 유형을 수행해야 합니다. 하향 변환
Instance
class Animal { public String name; public void eat() { System.out.println(this.name + " 正在吃"); } } class Cat extends Animal { } class Bird extends Animal { public int age; public void fly() { System.out.println(this.name+"起飞"); } } public class Test extends TestDemo { public static void main(String[] args) { Animal animal = new Animal(); Bird bird = (Bird) animal;//必须进行强制类型转换 } }
위 내용은 자바에서 하향 변환의 개념은 무엇입니까의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!