gpt4 book ai didi

java - 处理数组中的空对象

转载 作者:行者123 更新时间:2023-11-29 10:05:17 24 4
gpt4 key购买 nike

我有一个数组,里面有 18 个对象,数组被分配到里面有 25 个对象(剩下的 7 个对象为空,以备将来使用)。我正在编写一个打印出所有非空对象的程序,但我遇到了一个 NullPointerException,我不知道如何解决它。

当我尝试这个时,程序崩溃并出现 Exception in thread "main"java.lang.NullPointerException:

        for(int x = 0; x < inArray.length; x++)
{
if(inArray[x].getFirstName() != null)//Here we make sure a specific value is not null
{
writer.write(inArray[x].toString());
writer.newLine();
}
}

当我尝试这个时,程序运行了,但仍然打印空值:

        for(int x = 0; x < inArray.length; x++)
{
if(inArray[x] != null)//Here we make sure the whole object is not null
{
writer.write(inArray[x].toString());
writer.newLine();
}
}

谁能指出我处理数组中空对象的正确方向?感谢所有帮助!

最佳答案

您的支票应该是:

if(inArray[x] != null && inArray[x].getFirstName() != null)

关于java - 处理数组中的空对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10503712/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com