最佳答案
当运行这个:
public class WhatTheShoot {
public static void main(String args[]){
try {
throw null;
} catch (Exception e){
System.out.println(e instanceof NullPointerException);
System.out.println(e instanceof FileNotFoundException);
}
}
}
答案是:
true
false
这对我来说是相当惊人的。我本以为这会导致编译时错误。
为什么我可以抛出null在Java中,为什么它向上转换它到一个NullPointerException?
(实际上,我不知道它是否是一个“上置”,因为我抛出null)
除了一个非常非常愚蠢的面试问题(请不要在面试中问这个问题),我找不到任何理由throw null
。也许你想被解雇,但那…我的意思是,否则为什么会有人throw null
?
有趣的事实 IntelliJ IDEA 12告诉我,我的行,e instanceof NullPointerException
,将永远是假的。这根本不是真的。