gpt4 book ai didi

java - 在java中调用静态方法

转载 作者:行者123 更新时间:2023-12-04 01:51:55 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




8年前关闭。




Possible Duplicate:
How come invoking a (static) method on a null reference doesn’t throw NullPointerException?



任何人都可以解释为什么以下程序的输出是“ Called
public class Test4{

public static void method(){
System.out.println("Called");
}

public static void main(String[] args){
Test4 t4 = null;
t4.method();
}
}

我知道我们可以使用类引用调用静态方法,但在这里我使用空引用调用。请澄清我的疑问

最佳答案

在字节码中

Test4 t4 = null;
t4.method();

将会
Test4 t4 = null;
Test4.method();

编译器会将调用转换为静态方法的类名。引用这个 question在我自己问过的 SO 上。

关于java - 在java中调用静态方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14125841/

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