当前位置:   article > 正文

Java:什么是向上转型与向下转型(详细图解)_java 向下转型

java 向下转型

目录

一、什么是向上转型

1、概念

2、代码示例

3、向上转型的优缺点

二、什么是向下转型

1、向下转型的概念

​编辑

2、代码示例

三、向下转型的缺点及 instanceof 的使用

1、向下转型的缺点

2、instanceof的使用


一、什么是向上转型

1、概念

向上转型就是创建一个子类对象,将其当成父类对象来使用

语法格式:父类类型  对象名  =  new  子类类型()

                     Animal   animal  =  new Cat ();

Animal 是父类类型,但可以引用 Cat这个子类类型,因为是从小范围到大范围的转换。

2、代码示例

  1. class Aminal {
  2. public void display() {
  3. System.out.println("Animal");
  4. }
  5. }
  6. class Cat extends Aminal {
  7. public void display() {
  8. System.out.println("Cat");
  9. }
  10. }
  11. class Dog extends Aminal {
  12. }
  13. public class Main{
  14. public static void main(String[] args) {
  15. Aminal aminal1 = new Aminal();
  16. Aminal aminal2 = new Cat();
  17. Aminal aminal3 = new Dog();
  18. aminal1.display();
  19. aminal2.display();
  20. aminal3.display();
  21. }
  22. }

animal2中,Cat类 重写了 display方法,所以在实现时,打印的是Cat类中实现的内容。

animal3中,Dog类 没有重写 display方法,所以打印的还是父类中的内容。

由此我们可以得出:向上转型实现时

                                先看子类有没有

                                若是子类找不到

                                再看父类有没有

                                二者都无则报错!

3、向上转型的优缺点

优点:让代码实现更简单灵活

缺点:不能调用到子类特有的方法

例如:

  1. class Animal {
  2. public void display() {
  3. System.out.println("Animal");
  4. }
  5. }
  6. class Dog extends Animal {
  7. public void display() {
  8. System.out.println("dog");
  9. }
  10. public void eat() {
  11. System.out.println("吃骨头");
  12. }
  13. }
  14. public class Main {
  15. public static void main(String[] args) {
  16. Animal animal = new Dog();
  17. animal.display();
  18. animal.eat(); //会报错
  19. }
  20. }

所以,向上转型无法调用子类特有的方法!

二、什么是向下转型

1、向下转型的概念

将一个子类对象向上转型之后可以当成父类对象使用,若需要调用子类特有的方法,则需要将父类对象再还原为子类对象。这就称作向下转型。

2、代码示例

  1. class Animal {
  2. public void display() {
  3. System.out.println("Animal");
  4. }
  5. }
  6. class Dog extends Animal {
  7. public void display() {
  8. System.out.println("dog");
  9. }
  10. public void eat() {
  11. System.out.println("吃骨头");
  12. }
  13. }
  14. public class Main{
  15. public static void main(String[] args) {
  16. //向上转型
  17. Animal animal = new Dog();
  18. animal.display();
  19. //向下转型
  20. //Animal类中原本没有 eat方法,在向下转型之前如果调用eat方法会报错
  21. //向下转型为子类Dog类后,就可以调用子类中特有的方法,而不会报错
  22. animal = (Dog)animal;
  23. ((Dog) animal).eat();
  24. }
  25. }

运行结果:

三、向下转型的缺点及 instanceof 的使用

1、向下转型的缺点

缺点:向下转型使用的比较少,而且不安全。如果转换失败,运行时就会抛异常。

2、instanceof的使用

Java中为了提高向下转型的安全性,引入了instanceof。如果表达式为 true,则可以安全转换。

使用实例:

  1. class Animal {
  2. public void display() {
  3. System.out.println("Animal");
  4. }
  5. }
  6. class Dog extends Animal {
  7. public void display() {
  8. System.out.println("dog");
  9. }
  10. public void eat() {
  11. System.out.println("吃骨头");
  12. }
  13. }
  14. public class Main {
  15. public static void main(String[] args) {
  16. //向上转型
  17. Animal animal = new Dog();
  18. //判断instanceof 是否为 true
  19. if(animal instanceof Dog) {
  20. //向下转型
  21. animal = (Dog)animal;
  22. ((Dog) animal).eat();
  23. } else {
  24. System.out.println("Animal无法向下转型为Dog");
  25. }
  26. }
  27. }

 以上就是 Java:什么是向上转型与向下转型(详细图解)的全部内容了,希望能对您有所帮助!

您的点赞与收藏就是对我最大的支持!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/430356
推荐阅读
相关标签
  

闽ICP备14008679号