【Groovy】闭包 Closure ( 闭包中调用 Groovy 脚本中的方法 | owner 与 delegate 区别 | 闭包中调用对象中的方法 )

文章目录

一、闭包中调用 Groovy 脚本中的方法

二、owner 与 delegate 区别

三、闭包中调用 Groovy 对象中的方法





一、闭包中调用 Groovy 脚本中的方法


在 Groovy 脚本中 , 在 Closure 闭包中 , 可以直接调用 Groovy 脚本中定义的方法 ;


def fun() {
    println "fun"
}
def closure = {
    fun()
}
closure()


执行上述 Groovy 脚本结果如下 :


fun





二、owner 与 delegate 区别


在 Closure 闭包中 , 其 owner 就是创建闭包时所在的环境 , 这是无法改变的 ;


但是 Closure 闭包对象的 delegate 成员是可以修改的 ;






三、闭包中调用 Groovy 对象中的方法


在闭包中 , 可以直接调用 Groovy 脚本中定义的方法 ;


但是如果想要在闭包中 , 调用实例对象的方法 , 就必须设置闭包的 delegate 成员 ;


如下代码中 , 想要在闭包中 , 调用 Test 对象的 fun 方法 , 在执行闭包之前 , 必须将 闭包的 delegate 设置为 Test 实例对象 ;


closure.delegate = new Test()


之后使用


closure()


调用闭包 , 在闭包中执行 fun 方法 , 就会在代理 delegate 成员 , 即 Test 实例对象中 , 查找 fun 方法 ;



代码示例 :


class Test {
    def fun() {
        println "fun"
    }
}
// 闭包中不能直接调用 Test 对象中的方法
// 此时可以通过改变闭包代理进行调用
def closure = {
    fun()
}
closure.delegate = new Test()
closure()


执行结果 :


fun


上一篇:【Groovy】Groovy 方法调用 ( 使用 对象名.@成员名 访问 Groovy 对象成员 )


下一篇:【Groovy】闭包 Closure ( 闭包的 delegate 代理策略 | OWNER_FIRST | DELEGATE_FIRST | OWNER_ONLY | DELEGATE_ONLY )