Build time: 2021-06-14 14:47:26 UTC Revision: 989ccc9952b140ee6ab88870e8a12f1b2998369e
Kotlin: 1.4.31 Groovy: 3.0.7 Ant: Apache Ant(TM) version 1.10.9 compiled on September 27 2020 JVM: 11.0.10 (Oracle Corporation 11.0.10+8-LTS-162) OS: Mac OS X 10.16 x86_64
assert a instanceof Integer //assert a instanceof Long//错误 def b = 2147483648 assert b instanceof Long
关于函数的定义
如果所定义的函数没有参数,那么必须在调用的时候加上括号。
要有返回值的类型声明,如def、void、String等。
可以使用return返回值,若不写,则默认返回最后一行的值,没有则为null。
闭包是什么?
A closure in Groovy is an open, anonymous, block of code that can take arguments, return a value and be assigned to a variable. A closure may reference variables declared in its surrounding scope. In opposition to the formal definition of a closure, Closure in the Groovy language can also contain free variables which are defined outside of its surrounding scope.Apache Groovy Doc
def p = new Person(name:'Jessica', age:42) def t = new Thing(name:'Printer') def cl = p.fetchAge cl.delegate = p //设置代理 assert cl() == 42 cl.delegate = t assert cl() == 42//owner优先,fetchAge是一个闭包,它的owner是Person
cl.resolveStrategy = Closure.DELEGATE_ONLY //修改策略 cl.delegate = p assert cl() == 42 cl.delegate = t try { cl() assertfalse//呵呵,delegate上面没有该属性,报错 } catch (MissingPropertyException ex) { // "age" is not defined on the delegate //没有定义 }