Groovy 闭包 -- Gradle教程(三)

栏目: Groovy · 发布时间: 6年前

内容简介:Groovy 闭包 -- Gradle教程(三)

Groovy 闭包是代码块,可以被引用、带参数、作为方法参数传递、作为返回值从方法调用返回。

语法简介

先来看看闭包的语法,如下面的所示,很简单,其中方括号表示其可省略。

{ [closureParameters -> ] statements }

closureParameters 是可选的参数列表,可以是0到多个,参数是可以有类型的,或者无类型的。如果声明了参数,那么其后面的 -> 则必须添加,用于区分参数和函数体。

再来看看一些具体的例子。

// 编号1
{ item -> item++ }

// 编号2
{ item++ }

// 编号3
{ println it }

// 编号4
{ it -> println it }

// 编号5
{ name -> println name }

// 编号6
{
  String x, int y ->
    println "hey ${x} the value is ${y}"
}

// 编号7
{
  reader ->
    def line = reader.readLine()
    line.trim()
}

第一个例子,表明了一个没有类型的参数的自增操作;第二个例子是第一个例子的简写,自由一个参数时可以这样简写;第三个和第四个例子,也是同样的意思;第五个例子,是第四个例子的另一种写法,表明参数的名字可以随意规定;第六个例子,则是多类型参数的写法,其中 ${} 指引用了具体的值;第七个例子,表明表达式可以有多行。

闭包在 Groovy 中的特殊属性

闭包在 Groovy 中实际上是类型为 groovy.lang.Closure 的对象,我们来看看下面的代码。

def listener = {
  e -> println "Clicked on $e.source"
}

assert listener instanceof Closure

所以,Closure 里面的方法都可以调用,例如 listener.call() 。Closure 对象中,有三类非常重要的属性,分别是 this, owner, delegate。

  1. this 表示定义闭包的外围类。
  2. owner 表示定义闭包的直接外围对象,可以是类或者闭包。
  3. delegate 表示一个用于处理方法调用和属性处理的第三方类。

例如我们申明一个这样的闭包。

def cl = { name.toUpperCase()}

这时候 cl 并不知道任何信息,name 是什么也不清楚。这时候就可以将 delegate 引入,将具体的逻辑委托给另一个类。

class Preson {
  String name
}
def person = new Person(name: 'tom')
cl.delegate = person;

assert cl() == 'TOM'

实际示例

我们通常在使用 task 时,会在后面使用 doLast 这个函数,doLast 接受一个闭包作为参数。

task helloWorld {
        doLast {
                println "Hello, world!"
        }
}

实际上 doLast 后面只接受一个参数,也就是闭包,如果你使用 doLast(Closure) 也是可以的。

更多信息参考 http://groovy-lang.org/closures.html

文档信息


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

The Art of Computer Programming, Volume 4,  Fascicle 3

The Art of Computer Programming, Volume 4, Fascicle 3

Donald E. Knuth / Addison-Wesley Professional / 2005-08-05 / USD 19.99

Finally, after a wait of more than thirty-five years, the first part of Volume 4 is at last ready for publication. Check out the boxed set that brings together Volumes 1 - 4A in one elegant case, and ......一起来看看 《The Art of Computer Programming, Volume 4, Fascicle 3》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具