温柔翅膀

文章
4
资源
0
加入时间
2年10月24天

Groovy列表

末尾追加size()数组长度class Example { static void main(String[] args) { def list1 = [] ; def list2 = [1,2,3,4]; list2.add(12); list2.add(12); println(list2.size()); println(list2); } }6[1, 2, 3, 4, 12, 12]contains 包含元素返回为