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