3

我的控制器中有以下代码。如何访问每个索引?

def arr = ['a', 'b', 'c']

arr.each
{
// 'it' is the element
println it
}
4

1 回答 1

12

您可以使用eachWithIndex

arr.eachWithIndex { obj, i ->
    println "${i}: ${obj}"
}
于 2012-12-09T11:02:31.203 回答