Java if 语句在 if 语句中给我一个 NullPointerException
我有以下 if 语句,其中 parent
、grandparent
和 child
都是对象。由于某种原因,当涉及到 parent.isRightChild()
检查时,此 if 会抛出 NullPointerError 。如果这是 isRightChild() 函数的问题,我会很容易地发现它,但事实并非如此。这让我感到困惑,因为 parent
不应该为空。提前致谢。
if (parent != null && grandparent != null
&& (parent.isLeftChild() && child.isRightChild())
|| (parent.isRightChild() && child.isLeftChild())
)
I've got the following if statement, where parent
, grandparent
, and child
are all objects. For some reason, this if throws a NullPointerError when it comes to the parent.isRightChild()
check. If this where an issue with the isRightChild()
function, I would've caught it fairly easily, but it isn't. This just baffles me, because there should be no way for parent
to be null. Thanks in advance.
if (parent != null && grandparent != null
&& (parent.isLeftChild() && child.isRightChild())
|| (parent.isRightChild() && child.isLeftChild())
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当父对象和子对象都为 null 且 if 条件尝试访问parent.isRightChild() 方法时。所以它抛出 NullPointerException。
将方法访问条件分组为单独的(如上所示),因此如果对象为 null,则不会达到这些条件。
When parent and child objects are null and if condition is trying to access the parent.isRightChild() method. So it is throwing the NullPointerException.
group the method accessing conditions as separate(as shown above), so it will not reach those conditions if objects are null.