gpt4 book ai didi

java - 在java中检查字符串数组的大小或长度

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

我有这个

String p[] = null;

我需要检查它的大小/长度是否是 null 。就像是
if (p.length == null)

但它不起作用。

最佳答案

您无法检查 null 的长度。此外, length 返回一个永远不会是 intnull 。做就是了

if (p == null) {
// There is no array at all.
} else if (p.length == 0) {
// There is an array, but there are no elements.
}

或者只是实例化它而不是保留它 null
String[] p = new String[0];

然后你可以这样做:
if (p.length == 0) {
// There are no elements.
}

也可以看看:
  • The Java Tutorials - Arrays
  • 关于java - 在java中检查字符串数组的大小或长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5205780/

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