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

源代码在线查看: importtest.groovy

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

相关代码

				import java.io.*				import java.util.Map				import java.util.List								class ImportTest extends GroovyTestCase {								    void testImportAll() {				        def file = new File("foo.txt")				        assert file instanceof File				        assert file.getClass().name == "java.io.File"				    }				    				    void testImportByName() {				        def x = [:]				        assert x instanceof Map				        /**				         * For maps, map.getClass() should be used instead of map.class,				         * when map has no member, named as "class"				         */				        assert x.getClass() != null				        assert x.getClass().name.startsWith("java.util.")				        				        def y = [1, 2, 3]				        assert y instanceof List				        assert y.getClass().name.startsWith("java.util.")				    }				}							

相关资源