Groovy 集合操作 Groovy中定义List和Map方式比较特别List :def list = [1, 2, 3]删除list原始1、使用下标list = [1,2,3,4]list.remove(2)assert list == [1,2,4]def list = [1, 2, 3, 4, 5]list.removeAt(2)println list // ... Other 2023-09-27 42 点赞 0 评论 63 浏览