gpt4 book ai didi

java - 引用不存在的类/方法的动态加载类何时在 Java 中失败?

转载 作者:搜寻专家 更新时间:2023-11-01 01:57:38 24 4
gpt4 key购买 nike

假设我动态加载了一个 Java 类 C,它引用了不存在的类/方法。当 C 是为较新版本的 Java 编写时,可能会发生这种情况。它什么时候会失败——加载 C 时,或者调用不存在的类/方法的方法运行时?这是否会随着 VM 的变化而改变 - 包括其他版本的 Java,例如 Java ME?

最佳答案

When will it fail?

as soon as C is loaded?

没有。仅当加载时它引用了不存在的类(即,您具有该类型的类属性)

or when a method that calls a non-existant class/method is run?

是的。会是这样的。

例如这运行良好。

C:\>more > A.java
class A {}
^C
C:\>more > B.java
class B {
public void method() {
A a = new A();
}
public void other() {
System.out.println("Hello there");
}
public static void main( String ... args ) {
B b = new B();
b.other();
}
}

C:\>javac A.java B.java

C:\>erase A.class

C:\>java B
Hello there

类 B 由 java 加载,但由于没有代码使用 method 它运行良好。

相对于:

C:\>more > A.java
class A {}

C:\>more > B.java
class B {
void method() {
A a = new A();
}
public static void main( String ... args ) {
B b = new B();
b.method();
}
}
^C
C:\>javac A.java B.java

C:\>erase A.class

C:\>java B
Exception in thread "main" java.lang.NoClassDefFoundError: A
at B.method(B.java:3)
at B.main(B.java:7)
Caused by: java.lang.ClassNotFoundException: A
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 2 more

失败,因为 B 试图访问 A。

关于java - 引用不存在的类/方法的动态加载类何时在 Java 中失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4742499/

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