引入
NullPointerException
是Java开发中经常会遇到的异常。在JDK 14之前的版本中,NullPointerException
异常的消息只是简单的null
,并不会告诉你任何有用的信息,只能根据异常产生的源文件的行号来查找。对于很长的引用链来说,很难定位到底是哪个对象为null
。比如,类似a.b.c.d
这样的引用方式,a
、b
和c
中的任何一个为null
,都会出现NullPointerException
异常。仅靠行号无法快速定位问题所在。
在下面的代码中,对p.address.go();
的调用会出现NullPointerException
异常。
直接运行该文件的错误信息如下所示,从中我们只可以知道错误出现在6行,但是并不清楚错误的具体对象是谁为null
详解
JEP 358增强了对NullPointerException
异常的处理,可以显示详细的信息。这个功能需要通过选项-XX:+ShowCodeDetailsInExceptionMessages
启用,如下所示:
"C:Program FilesJavajdk-14injava.exe" -XX:+ShowCodeDetailsInExceptionMessages --enable-preview "-javaagent:C:Program FilesJetBrainsIntelliJ IDEA 2020.1libidea_rt.jar=49863:C:Program FilesJetBrainsIntelliJ IDEA 2020.1in" -Dfile.encoding=UTF-8 -classpath C:UsersAdministratorIdeaProjectsjdk_14outproductionjdk_14;C:UsersAdministrator.m2 epositoryjunitjunit4.12junit-4.12.jar;C:UsersAdministrator.m2 epositoryorghamcresthamcrest-core1.3hamcrest-core-1.3.jar com.topcheer.jdk14.Test Exception in thread "main" java.lang.NullPointerException: Cannot invoke "com.topcheer.jdk14.Address.go()" because "p.address" is null at com.topcheer.jdk14.Test.main(Test.java:6) Process finished with exit code 1
细示例
接下来我们来示范一下如下的情况下:a.i = b.j
Exception in thread "main" java.lang.NullPointerException: Cannot read field "j" because "b" is null at com.topcheer.jdk14.Test.main(Test.java:7)