java.lang.NullPointerException 是使用方法引用而不是 lambda 表达式引发的
我注意到使用Java 8方法引用的未处理的异常有些奇怪。这是我的代码,使用lambda表达式:() -> s.toLowerCase()
public class Test {
public static void main(String[] args) {
testNPE(null);
}
private static void testNPE(String s) {
Thread t = new Thread(() -> s.toLowerCase());
// Thread t = new Thread(s::toLowerCase);
t.setUncaughtExceptionHandler((t1, e) -> System.out.println("Exception!"));
t.start();
}
}
它打印“异常”,因此工作正常。但是当我改变使用方法引用时(甚至IntelliJ也建议):Thread t
Thread t = new Thread(s::toLowerCase);
未捕获异常:
Exception in thread "main" java.lang.NullPointerException
at Test.testNPE(Test.java:9)
at Test.main(Test.java:4)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)
有人可以解释一下这里发生了什么吗?