gpt4 book ai didi

groovy - 如何循环遍历列表并删除 groovy 中的项目?

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

我正在尝试找出如何从循环内的 groovy 列表中删除项目。

static main(args) {
def list1 = [1, 2, 3, 4]
for(num in list1){
if(num == 2)
list1.remove(num)
}
println(list1)
}

最佳答案

list = [1, 2, 3, 4]
newList = list.findAll { it != 2 }

应该给你除 2 之外的所有内容

当然,您可能有需要循环的理由?

关于groovy - 如何循环遍历列表并删除 groovy 中的项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4046737/

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