每个Grails指数

时间:2012-12-09 10:18:52

标签: groovy

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

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

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

1 个答案:

答案 0 :(得分:10)

您可以使用eachWithIndex

arr.eachWithIndex { obj, i ->
    println "${i}: ${obj}"
}