在常规循环中,例如:
x = [1,2,3,4,5]
x.each { i ->
// other CRUD type functionality - required
// print each values - not required
}
我可以限制每个子句中的打印值吗?实际上我希望执行 CRUD 功能。但是在那次打印之后,我打印了我不想要的每个值。
我现在的输出:
1
2
3
4
5
6
==>1
==>2
==>3
==>4
==>5
==>6