三元运算符和意外的NullPointerException

三元运算符和意外的NullPointerException

本文介绍了三元运算符和意外的NullPointerException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有时我从下面的行中获取 NullPointerException

I am getting NullPointerException from the below line sometimes.

System.out.println("Date::"+ row != null ? row.getLegMaturityDate() : "null");

加括号后就可以了。

System.out.println("Date::"+ (row != null ? row.getLegMaturityDate() : "null"));

请说明我的行为。

推荐答案

Date :: +行是永远不会为null,尽管有时 row

"Date::" + row is never null, although row sometimes is.

也就是说, Date :: +行!=空等效于( Date :: +行)!=空,始终为真。

That is, "Date::"+ row != null is equivalent to ("Date::"+ row) != null which is always true.

这篇关于三元运算符和意外的NullPointerException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 00:52