大名鼎鼎的java动态脚本语言。已经通过了sun的认证

源代码在线查看: leftshifttest.groovy

软件大小: 1630 K
上传用户: hjf
关键词: java sun 动态 脚本
下载地址: 免注册下载 普通下载 VIP

相关代码

				class LeftShiftTest extends GroovyTestCase {								    def foo = [1, 2, 3]								    void testShift() {				        def x = 4								        def y = x 								        println "Value is $y"								        assert y == 16								        assert x 				    }								    void testShiftList() {				        def list = []								        for (i in 1..10) {				            list 				        }								        println "List is $list"				    }								    void testLeftShiftOnExpression() {				        this.foo 								        assert foo == [1, 2, 3, 4]				    }								}							

相关资源