三、Groovy语法(三):数据结构Groovy中常用的数据结构
Groovy中常用的数据结构一、列表<List>1、列表的定义//初始化def list = [1, 2, 3, 4, 5]//看起来像是java中的数组,那么groovy中如何定义数组def array = [1, 2, 3, 4, 5] as int[] //使用as关键字定义一个int数组int[] array2 = [1, 2, 3, 4, 5] ...