groovy – 是否有任何隐式变量来访问“each”方法中的项索引
发布时间:2020-12-14 16:32:37 所属栏目:大数据 来源:网络整理
导读:有没有办法在以下示例中删除变量“i”,仍然可以访问正在打印的项目的索引? def i = 0;"one two three".split().each { println ("item [ ${i++} ] = ${it}");} ===============编辑================ 我发现一种可能的解决方案是使用“eachWithIndex”方法:
有没有办法在以下示例中删除变量“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 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |