Blog信息 |
blog名称: 日志总数:1304 评论数量:2242 留言数量:5 访问次数:7591290 建立时间:2006年5月29日 |

| |
[Groovy]Groovy 2 基础语法 软件技术
lhwork 发表于 2006/12/15 15:43:43 |
Groovy的基础语法
Groovy 有很多优点。它很好地融合了 Ruby、Python 和 Smalltalk
的一些最有用的功能,同时保留了基于 Java 语言的核心语法。对于Java 开发人员,Groovy
提供了更简单的替代语言,且几乎不需要学习时间。对于刚接触 Java 平台的开发人员,它可以作为有更复杂语法和要求的 Java
语言的一个容易的入口点。
语法
Groovy的语句和Java类似,但是有一些特殊的地方。例如语句的分号是可选的。如果每行一个语句,就可以省略分号;如果一行上有多个语句,则需要用分号来分隔。x = [1, 2, 3]println xy = 5; x = y + 7println xassert x == 12另外return关键字在方法的最后是可选的;同样,返回类型也是可选(缺省是Object)。
动态类型
像其他Script一样,Groovy 不需要显式声明类型。在 Groovy
中,一个对象的类型是在运行时动态发现的,这极大地减少了要编写的代码数量。在Groovy中,类型对于值(varibles)、属性
(properties)、方法(method)和闭包(closure)参数、返回值都是可有可无的,只有在给定值的时候,才会决定它的类型,(当然声
明了类型的除外)。例如://Groovy 动态类型myStr = "Hello World"由于使用了动态类型,不需要继承就可以得到多态的全部功能:class Song{ @Property length @Property name}class Book{ def public name def public author}def doSomething(thing){ println "going to do something with a thing named = " + thing.name}这
里定义了两个Groovy 类,Song 和 Book。这两个类都包含一个 name 属性。函数 doSomething,它以一个 thing
为参数,并试图打印这个对象的 name 属性,但doSomething 函数没有定义其输入参数的类型,所以只要对象包含一个 name
属性,那么它就可以工作。可见, Song 和 Book 的实例都可以作为 doSomething 的输入参数。mySong = new Song(length:90, name:"Burning Down the House")myBook = new Book(name:"One Duck Stuck", author:"Phyllis Root")doSomething(mySong) //prints Burning Down the HousedoSomething(myBook) //prints One Duck Stuckdef doSth=this.&doSomethingdoSth(mySong)doSth(myBook)在例子的最后,我们还创建了doSomething的一个函数指针 doSth,最后的执行结果与调用doSoemthing是一样的。值
得注意的是:与Groovy Beta不同,在使用新的JSR Groovy类时,类里面的所有的变量都必须加上 def 关键字或者
private、protected 或 public 这样的修饰符。当然,也可以用 @Property
关键字声明成员变量。在Script中则不必。
字符串
Groovy中的字符串允许使用双引号和单引号。当使用双引号时,可以在字符串内嵌入一些运算式,Groovy允许您使用 与 bash 类似的 ${expression} 语法进行替换。可以在字符串中包含任意的Groovy表达式。name="James"println "My name is ${name},'00${6+1}'" //prints My name is James,'007'Groovy还支持"uXXXX" 引用(其中X是16进制数),用来表示特殊字符,例如 "u0040" 与"@"字符相同。大块文本如果有一大块文本(例如 HTML 和 XML)不想编码,你可以使用Here-docs. here-docs 是创建格式化字符串的一种便利机制。它需要类似 Python 的三重引号(""")开头,并以三重引号结尾。name = "James"text = """hello there ${name} how are you today?"""assert text != nullprintln(text)在Groovy-JSR中,不再支持下面这种多行字符串,个人觉得似乎与Here-docs功能重叠:foo = "hello there how are things?"println(foo)对字符串的操作
contains 字符串中是否包含子字符串,'groovy'.contains('oo')将返回true;count 返回字符串中子字符串出现的次数,'groooovy'.count('oo')将返回3.tokenize 根据分隔符将字符串分解成子串,'apple^banana^grap'.tokenize('^')返回['apple','banana','grape']。减操作 'groovy'-'oo',结果是'grvy'。乘操作 'oo'*3,结果是'oooooo'。
Groovy主要结构
接下来将展示Groovy的一些结构,包逻辑分支,类、闭包等等。
逻辑分支
if-else语句Groovy提供Java相同的if-else语句。x = falsey = falseif ( !x ) { x = true}assert x == trueif ( x ) { x = false} else{ y = true}assert x == yGroovy也支持三元操作符。y = 5x = (y > 1) ? "worked" : "failed"assert x == "worked"
switch语句
Groovy的switch语句兼容Java代码,但是更灵活,Groovy的switch语句能够处理各种类型的switch值,可以做各种类型的匹配:
case值为类名,匹配switch值为类实例case值为正则表达式,匹配switch值的字符串匹配该正则表达式case值为集合,匹配switch值包含在集合中,包括ranges除了上面的,case值与switch值相等才匹配。x = 1.23result = ""switch ( x ) { case "foo": result = "found foo" // lets fall through case "bar": result += "bar" case [4, 5, 6, 'inList']: result = "list" break case 12..30: result = "range" break case Integer: result = "integer" break case Number: result = "number" break default: result = "default"}assert result == "number"Switch
语句的工作原理:switch语句在做case值匹配时,会调用isCase(switchValue)方法,Groovy提供了各种类型,如类,正则表
达式、集合等等的重载。可以创建自定义的匹配类,增加isCase(switchValue)方法来提供自定义的匹配类型。
循环
while和do 循环Groovy支持Java相同的while循环,但目前暂不支持do循环
x = 0y = 5while ( y-- > 0 ){ x++}assert x == 5for循环Groovy的for循环更简单,而且能够和各种类型的数组、集合、Map、范围等一起工作,我们稍候会详细介绍这些内容。// iterate over a rangex = 0for ( i in 0..9 ) { x += i}assert x == 45// iterate over a listx = 0for ( i in [0, 1, 2, 3, 4] ) { x += i}assert x == 10// iterate over an arrayarray = (0..4).toArray()x = 0for ( i in array ) { x += i}assert x == 10// iterate over a mapmap = ['abc':1, 'def':2, 'xyz':3]x = 0for ( e in map ) { x += e.value}assert x == 6// iterate over values in a mapx = 0for ( v in map.values() ) { x += v}assert x == 6// iterate over the characters in a stringtext = "abc"list = []for (c in text) { list.add(c)}assert list == ["a", "b", "c"]
运行Groovy脚本
你可以象使用Perl一样编写Groovy脚本,不需要class,不需要Main入口点,也不需要声明变量;此外,你还可以用def语句来定义自己的函数,并在脚本中使用它。像许多脚本语言一样,Groovy 是 在运行时解释的,无编译的代码在构建-运行周期中可以提供很多好处。运行时编译使 Groovy 成为快速原型设计、构建不同的实用程序和测试框架的理想平台。通过以下代码可以很简单的运行Groovy.groovy HelloWorld.groovy除了利用解释器来运行Groovy脚本外,Groovy 提供了两种不同的解释器Shell,使所有有效的 Groovy 表达式可以交互地执行:
运行groovysh启动命令Shell,可以输入Groovy语句直接执行运行groovyConsole启动Swing方式的Groovy控制台,这是一个简单的Groovy编辑器Groovy 脚本实际上是字节码级别的 Java 类。因此,还可以用 groovyc 编译
Groovy 脚本。可以通过命令行或者 Ant 使用 groovyc 以生成脚本的类文件。这些类可以用普通 java 命令运行,只要
classpath 包括 groovy.jar和asm.jar。(龙二少爷) |
|
|