gpt4 book ai didi

java - 如何在大海捞针中检查空值和空字符串?

转载 作者:行者123 更新时间:2023-11-30 06:35:03 26 4
gpt4 key购买 nike

情况:我在我的代码中遇到了很多检查。我想知道一种可以减少它们的方法。

if(needle!=null && haystack!=null)
{
if(needle.length()==0)
return true;
else
{
if(haystack.length()==0)
return false;
else
{
// Do 2 for loops to check character by character comparison in a substring
}
}

}
else
return false;

最佳答案

也许不同的代码风格会增加代码的可读性并减少所有检查的嵌套 if 语句的数量。

if (needle == null || haystack == null || haystack.isEmpty())
return false;

if (needle.isEmpty())
return true;

// compare strings here and return result.

关于java - 如何在大海捞针中检查空值和空字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6418163/

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