返回此 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 subString()用法及代码示例
- Groovy sin()用法及代码示例
- Groovy split()用法及代码示例
- Groovy setTime()用法及代码示例
- Groovy sqrt()用法及代码示例
- Groovy matches()用法及代码示例
- Groovy after()用法及代码示例
- Groovy padRight()用法及代码示例
- Groovy contains()用法及代码示例
- Groovy exp()用法及代码示例
- Groovy equals()用法及代码示例
- Groovy before()用法及代码示例
- Groovy pow()用法及代码示例
注:本文由纯净天空筛选整理自 Groovy - subList()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。