gpt4 book ai didi

java - 奇怪的空指针异常

转载 作者:行者123 更新时间:2023-12-01 16:35:25 25 4
gpt4 key购买 nike

我的父类(super class)中有这个方法,它扩展了 Activity :

protected boolean isStopAvailable(BusStop stop) {
if (stop == null) {
stop = new BusStop();
} else if (stop.getName().length() > 0) {
return true;
} else {
return false;
}
return false;
}

我在我的子类中调用它 isStopAvailable(object);在启动对象之后使用对象的方法时,怎么可能会出现空指针异常?

最佳答案

stop.getName() 返回 null

else if (stop.getName() != null && stop.getName().length() > 0)

应该可以解决

关于java - 奇怪的空指针异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9692715/

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