有没有办法在以下示例中删除变量“i”,仍然可以访问正在打印的项目的索引?
def i = 0; "one two three".split().each { println ("item [ ${i++} ] = ${it}"); }
===============编辑================
我发现一种可能的解决方案是使用“eachWithIndex”方法:
"one two three".split().eachWithIndex {it,i println ("item [ ${i} ] = ${it}"); }
如果有其他解决方案,请告诉我.
解决方法
你可以使用eachWithIndex()
"one two three four".split().eachWithIndex() { entry,index -> println "${index} : ${entry}" }
这将导致
0 : one 1 : two 2 : three 3 : four
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。