Java if 语句在 if 语句中给我一个 NullPointerException

发布于 2025-01-16 17:16:01 字数 465 浏览 0 评论 0原文

我有以下 if 语句,其中 parentgrandparentchild 都是对象。由于某种原因,当涉及到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转身泪倾城 2025-01-23 17:16:02

当父对象和子对象都为 null 且 if 条件尝试访问parent.isRightChild() 方法时。所以它抛出 NullPointerException。

if (parent != null && grandparent != null
    && (
          (parent.isLeftChild() && child.isRightChild())
         || (parent.isRightChild() && child.isLeftChild())
      )
)

将方法访问条件分组为单独的(如上所示),因此如果对象为 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.

if (parent != null && grandparent != null
    && (
          (parent.isLeftChild() && child.isRightChild())
         || (parent.isRightChild() && child.isLeftChild())
      )
)

group the method accessing conditions as separate(as shown above), so it will not reach those conditions if objects are null.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文