Groovy - subList()


返回此 Range 中指定的 fromIndex(包含)和 toIndex(不包含)之间的部分的视图

句法

List subList(int fromIndex, int toIndex)

参数

  • fromIndex – 范围的起始索引
  • toIndex – 范围的结束索引

返回值

从指定的起始索引到结束索引的范围值列表。

以下是此方法的使用示例 -

class Example { 
   static void main(String[] args) { 
      def rint = 1..10; 
		
      println(rint.subList(1,4)); 
      println(rint.subList(4,8)); 
   } 
}

当我们运行上面的程序时,我们将得到以下结果 -

[2, 3, 4] 
[5, 6, 7, 8] 
groovy_ranges.htm