我的控制器中有以下代码。如何访问每个索引?
def arr = ['a', 'b', 'c']
arr.each
{
// 'it' is the element
println it
}
我的控制器中有以下代码。如何访问每个索引?
def arr = ['a', 'b', 'c']
arr.each
{
// 'it' is the element
println it
}
您可以使用eachWithIndex:
arr.eachWithIndex { obj, i ->
println "${i}: ${obj}"
}