loopbreaktest.groovy
来自「Groovy动态语言 运行在JVM中的动态语言 可以方便的处理业务逻辑变化大的业」· GROOVY 代码 · 共 52 行
GROOVY
52 行
class LoopBreakTest extends GroovyTestCase {
void testWhileWithBreak() {
def x = 0
while (true) {
if (x == 5) {
break
}
++x
assert x < 10 , "Should never get here"
}
println "worked: while completed with value ${x}"
}
/**
We currently do not support do ... while in the JSR syntax
void testDoWhileWithBreak() {
def x = 0
do {
//println "in do-while loop and x = ${x}"
if (x == 5) {
break
}
++x
assert x < 10 , "Should never get here"
}
while (true)
println "worked: do-while completed with value ${x}"
}
*/
void testForWithBreak() {
def returnValue
for (x in 0..20) {
if (x == 5) {
returnValue = x
break
}
assert x < 10 , "Should never get here"
}
println "worked: for loop completed with value ${returnValue}"
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?