J'ai remarqué quelque chose de bizarre à propos des exceptions non gérées à l'aide de Java 8 méthode de référence. C'est mon code, à l'aide de l'expression 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();
}
}
Il imprime "Exception", de sorte qu'il fonctionne bien. Mais quand je change Thread t
le recours à une méthode de référence (même IntelliJ suggère que):
Thread t = new Thread(s::toLowerCase);
l'exception n'est pas d'être pris:
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)
Quelqu'un peut m'expliquer ce qui se passe ici?