土豪柚子

文章
6
资源
0
加入时间
2年10月17天

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 // ...