Java怎么正确的向上转型与向下转型
短信预约 -IT技能 免费直播动态提醒
在Java中,向上转型和向下转型是用来处理父类与子类之间的关系的。
- 向上转型:将一个子类的对象转换为父类的对象。这样可以实现父类引用指向子类对象,实现多态。向上转型是自动进行的,无需强制转换。
class Animal {
public void eat() {
System.out.println("Animal is eating");
}
}
class Dog extends Animal {
public void eat() {
System.out.println("Dog is eating");
}
}
public class Main {
public static void main(String[] args) {
Animal animal = new Dog(); // 向上转型
animal.eat(); // 输出 Dog is eating
}
}
- 向下转型:将一个父类的对象转换为子类的对象。需要使用强制类型转换操作符,并且需要进行类型检查以避免ClassCastException异常。
class Animal {
public void eat() {
System.out.println("Animal is eating");
}
}
class Dog extends Animal {
public void eat() {
System.out.println("Dog is eating");
}
public void bark() {
System.out.println("Dog is barking");
}
}
public class Main {
public static void main(String[] args) {
Animal animal = new Dog(); // 向上转型
if (animal instanceof Dog) {
Dog dog = (Dog) animal; // 向下转型
dog.bark(); // 输出 Dog is barking
}
}
}
需要注意的是,向下转型时一定要进行类型检查,以避免出现ClassCastException异常。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341