让我们看看下面的代码片段中的简单 Java 代码:
public class Main {
private int temp() {
return true ? null : 0;
// No compiler error - the compiler allows a return value of null
// in a method signature that returns an int.
}
private int same() {
if (true) {
return null;
// The same is not possible with if,
// and causes a compile-time error - incompatible types.
} else {
return 0;
}
}
public static void main(String[] args) {
Main m = new Main();
System.out.println(m.temp());
System.out.println(m.same());
}
}
在这个最简单的 Java 代码中,即使函数的返回类型是 int
,temp()
方法也不会发生编译器错误,并且我们尝试返回值 null
(通过语句 return true ? null : 0;
)。编译时,这显然会导致运行时异常 NullPointerException
。
但是,如果我们使用 if
语句(如在 same()
方法中)表示三元操作符,那么看起来同样是错误的,是的会发出编译时错误!为什么?