为什么这个会抛出 NullPointerException
public static void main(String[] args) throws Exception {
Boolean b = true ? returnsNull() : false; // NPE on this line.
System.out.println(b);
}
public static Boolean returnsNull() {
return null;
}
而这个没有
public static void main(String[] args) throws Exception {
Boolean b = true ? null : false;
System.out.println(b); // null
}
?
解决方案是用 Boolean.FALSE
代替 false
,以避免 null
被解封到 boolean
——这是不可能的。但这不是问题所在。问题是 为什么?是否有任何参考 JLS 证实这种行为,特别是第二种情况?