了解Gradle之groovy概览
def的用途
用def定义的变量时无类型的变量,这里所说的无类型的变量,并不表示该变量就不属于某一个类型了,def修饰变量正是Groovy为动态语言的标记,大概def修饰变量就相当于Java中Object来修饰变量吧。如果通过使用def关键字使用可选类型,那么整数的类型将是可变的:它取决于这个类型实际包含的值。
1 | assert a instanceof Integer |
关于函数的定义
如果所定义的函数没有参数,那么必须在调用的时候加上括号。
要有返回值的类型声明,如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
语法与用法
1 | { println 'hi' } |
访问外部变量
1 | def str='hello world' |
语法糖
- .闭包可作为一个参数传给另一个闭包,也可在闭包中返回一个闭包。
1 | def timesThree = { |
- 闭包的一些快捷写法.
- 当闭包作为闭包或方法的最后一个参数,可以将闭包从参数圆括号中提取出来接在最后。
- 如果闭包中不包含闭包,则闭包或方法参数所在的圆括号也可以省略。
- 对于有多个闭包参数的,只要是在参数声明最后的,均可以按上述方式省略。
闭包的Delegation代理
- this 指闭包所在的最近的类 .class
- owner 指定义闭包的宿主,不仅仅是类,还可能是一个闭包
- delegate 代理,默认使用的是owner
- delegate strategy 代理的代理策略
1 | def p = new Person(name:'Jessica', age:42) |
至此基本的东西差不多解决了。
了解Gradle之groovy概览