我正在阅读一篇博文,看到一个看起来像
的groovy片段while ( entry = inputStream.nextEntry ) {
// do something
}
在while循环中,这个groovy语法是否会在entry为null时导致循环中断?
答案 0 :(得分:1)
答案 1 :(得分:0)
第一周使用Groovy并想测试一下。以为我会分享测试&结果。谢谢你指出这一点。
def list = ['one', 'two', null, 'four']
def it = list.iterator()
def i
while (i = it.next()) {
println i
}
Result: one
two