在Groovy中,可以使用以下方法来检查列表中是否有空字符串:
def list = ["", "hello", "world", ""]
def hasEmptyString = false
for (item in list) {
if (item == "") {
hasEmptyString = true
break
}
}
println hasEmptyString
any
,结合闭包来检查列表中是否存在空字符串。def list = ["", "hello", "world", ""]
def hasEmptyString = list.any { it == "" }
println hasEmptyString
以上两种方法都可以判断列表中是否存在空字符串。如果存在空字符串,hasEmptyString
的值将为true
,否则为false
。
关于Groovy的更多信息和用法,可以参考腾讯云的Groovy产品介绍页面:Groovy产品介绍
领取专属 10元无门槛券
手把手带您无忧上云