gpt4 book ai didi

java - Java 中的向下转型

转载 作者:太空宇宙 更新时间:2023-11-04 14:08:53 26 4
gpt4 key购买 nike

Java 中允许向上转换,但是向下转换会产生编译错误。

可以通过添加强制转换来消除编译错误,但无论如何都会在运行时中断。

在这种情况下,如果 Java 无法在运行时执行,为什么允许向下转型?
这个概念有什么实际用途吗?

public class demo {
public static void main(String a[]) {
B b = (B) new A(); // compiles with the cast,
// but runtime exception - java.lang.ClassCastException
}
}

class A {
public void draw() {
System.out.println("1");
}

public void draw1() {
System.out.println("2");
}
}

class B extends A {
public void draw() {
System.out.println("3");
}
public void draw2() {
System.out.println("4");
}
}

最佳答案

当运行时有可能成功时,允许向下转型:

Object o = getSomeObject(),
String s = (String) o; // this is allowed because o could reference a String

在某些情况下这不会成功:

Object o = new Object();
String s = (String) o; // this will fail at runtime, because o doesn't reference a String

当转换(例如最后一个)在运行时失败时, ClassCastException将会被抛出。

在其他情况下它会起作用:

Object o = "a String";
String s = (String) o; // this will work, since o references a String

请注意,某些类型转换在编译时将被禁止,因为它们根本不会成功:

Integer i = getSomeInteger();
String s = (String) i; // the compiler will not allow this, since i can never reference a String.

关于java - Java 中的向下转型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28569578/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com