gpt4 book ai didi

Java- 空值处理

转载 作者:行者123 更新时间:2023-11-30 06:20:19 25 4
gpt4 key购买 nike

我有一个数组,它有时可以是 null (strings[0]) 我希望能够检测到它何时为 null 这样我就不会收到错误并且我可以告诉用户.

我试过if语句

(if (strings == null){
//do my code
})

那没用。我尝试执行 try, catch (NullPointerException) 但我的 IDE 出现错误。任何帮助将不胜感激。

最佳答案

if (strings == null)

如果字符串为空则返回真

你想要的是:

if (strings != null)

关于Java- 空值处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21950542/

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