⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 switchtest.groovy

📁 大名鼎鼎的java动态脚本语言。已经通过了sun的认证
💻 GROOVY
字号:
class SwitchTest extends GroovyTestCase {    void testSwitch() {        callSwitch("foo", "foo")        callSwitch("bar", "barfoo")        callSwitch("dummy", "d*")        callSwitch("xyz", "xyzDefault")        callSwitch("zzz", "Default")        callSwitch(4, "List")        callSwitch(5, "List")        callSwitch(6, "List")        callSwitch("inList", "List")        callSwitch(1, "Integer")        callSwitch(1.2, "Number")        callSwitch(null, "null")    }    def callSwitch(x, expected) {        println("Calling switch with ${x}")        def result = ""        switch (x) {        	case null:        		result = "null"                break        	case ~/d.*/:        		result = "d*"                break            case "bar":                result = result + "bar"            case "foo":                result = result + "foo"                break            case [4, 5, 6, 'inList']:                result = "List"                break            case Integer:                result = "Integer"                break            case Number:                result = "Number"                break            case "xyz":                result = result + "xyz"            default:                result = result + "Default"                // unnecessary just testing compiler                break;        }        println("Found result ${result}")        assert result == expected , "when calling switch with ${x}"    }        // test the continue in switch, which should jump to the the while start    void testSwitchScope() {        def i = 0        def j = 0        while (true) {            ++i;            switch(i) {                case 4:                    continue                case 5:                    break;                default:                    j += i;                    break;            }            if (i == 5) break;        }        assert j == 6    }    void testSwitchWithClosure(){        switch(0){            case {true}: break            default: assert false        }        switch(0){            case {false}: assert false        }        switch(0){            case {it == 0}: break            default: assert false        }        switch(0){            case { candidate -> candidate == 0}: break            default: assert false        }    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -