为什么我可以在Java中抛出null?
运行此命令时:
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
这对我来说相当令人惊叹。我本来以为这会造成编译时错误。
为什么我可以在Java中抛出null,为什么它会把它投射到NullPointerException?
(实际上,我不知道这是否是“向上投射”,因为我抛出了null)
除了一个非常非常愚蠢的面试问题(请不要在面试中问这个问题),我看不出有任何理由。也许你想被解雇,但那是...我的意思是,为什么会有人呢?throw null
throw null
有趣的事实IntelliJ IDEA 12告诉我,我的线,将永远是错误的。这根本不是真的。e instanceof NullPointerException