📄 returntest.groovy
字号:
/** * Tests the use of returns in Groovy * * @author <a href="mailto:james@coredevelopers.net">James Strachan</a> * @version $Revision: 1.8 $ */class ReturnTest extends GroovyTestCase { void testIntegerReturnValues() { def value = foo(5) assert value == 10 } void testBooleanReturnValues() { def value = bar(6) assert value } def foo(x) { return ( x * 2 ) } def bar(x) { return x > 5 } void testVoidReturn() { explicitVoidReturn() implicitVoidReturn() explicitVoidReturnWithoutFinalReturn() implicitVoidReturnWithoutFinalReturn() } void explicitVoidReturn() { return } def implicitVoidReturn() { return } void explicitVoidReturnWithoutFinalReturn() { def x = 4; if (x == 3) { return; } else { try { x = 3; return; } finally { //do nothing } } } def implicitVoidReturnWithoutFinalReturn() { def x = 4; if (x == 3) { return; } else { try { x = 3; return; } finally { //do nothing } } } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -