【Groovy】闭包 Closure ( 闭包调用 与 call 方法关联 | 接口中定义 call() 方法 | 类中定义 call() 方法 | 代码示例 )

简介: 【Groovy】闭包 Closure ( 闭包调用 与 call 方法关联 | 接口中定义 call() 方法 | 类中定义 call() 方法 | 代码示例 )

文章目录

总结

一、接口中定义 call() 方法

二、类中定义 call() 方法

三、完整代码示例

总结


在 实例对象后使用 " () " 括号符号 , 表示调用该实例对象的 " call() " 方法 ;






一、接口中定义 call() 方法


定义 Action 接口 , 在该接口中 , 创建 void call() 抽象方法 ;


/**
 * 创建接口
 * 接口中定义 call 方法
 * 调用上述 接收 闭包作为参数的 fun 函数时
 * 传入该 Action 匿名内部类
 */
interface Action {
    void call()
}


创建上述 Action 方法的匿名内部类 , 并 使用 () 执行上述匿名内部类对象 , 会 自动调用 Action 匿名内部类的 call 方法 ;


// 在 Action 对象后使用 () 执行方法相当于调用 call 方法
new Action(){
    @Override
    void call() {
        println "Closure 3"
    }
}()


执行上述代码 , 会打印


Closure 3


内容 ;



同时上述匿名内部类 , 可以当做闭包 , 传递给


/**
 * 定义一个方法 , 接收闭包作为参数 , 在方法中执行闭包内容
 * @param closure
 * @return
 */
def fun(closure) {
    closure()
}


函数 ; 向 fun 函数中 , 传入 Action 匿名内部类 , 此时执行该函数时 , 执行闭包内容 , 会自动调用 Action 匿名内部类的 call 方法 ;


// 向 fun 函数中 , 传入 Action 匿名内部类
// 此时执行该函数时 , 执行闭包内容 , 会自动调用 Action 匿名内部类的 call 方法
fun (new Action(){
    @Override
    void call() {
        println "Closure 3"
    }
})


上述 fun 函数的执行结果 :


Closure 4






二、类中定义 call() 方法


在普通的 Groovy 类中 , 定义 call() 方法 ;


// 定义一个有 call 方法的类
class Action2 {
    def call() {
        println "Closure 5"
    }
}


在该类实例对象后 使用 () , 会自动执行该类的 call 方法 ;


// 在该类实例对象后使用 () , 会自动执行该类的 call 方法
new Action2()()


执行结果为 :


Closure 5






三、完整代码示例


完整代码示例 :


/**
 * 定义一个方法 , 接收闭包作为参数 , 在方法中执行闭包内容
 * @param closure
 * @return
 */
def fun(closure) {
    closure()
}
/**
 * 创建接口
 * 接口中定义 call 方法
 * 调用上述 接收 闭包作为参数的 fun 函数时
 * 传入该 Action 匿名内部类
 */
interface Action {
    void call()
}
// 将 闭包 当做 参数 传递到函数中
fun ({
    println "Closure 1"
})
// 闭包是函数的最后一个参数 , 可以 省略括号 , 将闭包写在函数后面
fun {
    println "Closure 2"
}
// 在 Action 对象后使用 () 执行方法相当于调用 call 方法
new Action(){
    @Override
    void call() {
        println "Closure 3"
    }
}()
// 向 fun 函数中 , 传入 Action 匿名内部类
// 此时执行该函数时 , 执行闭包内容 , 会自动调用 Action 匿名内部类的 call 方法
fun (new Action(){
    @Override
    void call() {
        println "Closure 4"
    }
})
// 定义一个有 call 方法的类
class Action2 {
    def call() {
        println "Closure 5"
    }
}
// 在该类实例对象后使用 () , 会自动执行该类的 call 方法
new Action2()()



执行结果 :


Closure 1
Closure 2
Closure 3
Closure 4
Closure 5

image.png

目录
相关文章
|
7月前
|
存储 程序员 Python
Python函数定义与调用详解
Python中的函数是可重用代码块,用于接收参数、执行操作并可能返回输出。通过`def`定义函数,如`def greet(name): print(f"Hello, {name}!")`。函数可接受任意数量的参数,包括默认值。调用函数时提供参数,如`greet("Alice")`。可变参数通过星号(*)和双星号(**)实现。函数有助于代码模块化、理解和维护。掌握函数是Python编程基础。
|
7月前
|
Java
【Java方法重载】 定义,使用,理解,示例解读
【Java方法重载】 定义,使用,理解,示例解读
174 0
|
调度
Thread 类中的 yield()方法有什么作用?
Thread 类中的 yield()方法有什么作用?
163 0
|
C#
C#中方法函数的声明和调用
C#中方法函数的声明和调用
175 0
|
Python
python调用父类方法的三种方式(super调用和父类名调用)
python调用父类方法的三种方式(super调用和父类名调用)
247 0
|
Java
Java中的方法的概念及无参、带参、带返回值方法定义和调用
方法的概念及无参、带参、带返回值方法定义和调用的简单示例
237 0
【Groovy】Groovy 方法调用 ( 使用闭包创建接口对象 | 接口中有一个函数 | 接口中有多个函数 )
【Groovy】Groovy 方法调用 ( 使用闭包创建接口对象 | 接口中有一个函数 | 接口中有多个函数 )
292 0
【Groovy】Groovy 方法调用 ( 使用闭包创建接口对象 | 接口中有一个函数 | 接口中有多个函数 )
【Groovy】闭包 Closure ( 闭包类 Closure 简介 | this、owner、delegate 成员赋值及源码分析 )
【Groovy】闭包 Closure ( 闭包类 Closure 简介 | this、owner、delegate 成员赋值及源码分析 )
178 0
【Groovy】闭包 Closure ( 闭包类 Closure 简介 | this、owner、delegate 成员赋值及源码分析 )
|
机器学习/深度学习
【Groovy】闭包 Closure ( 闭包参数绑定 | curry 函数 | rcurry 函数 | ncurry 函数 | 代码示例 )(二)
【Groovy】闭包 Closure ( 闭包参数绑定 | curry 函数 | rcurry 函数 | ncurry 函数 | 代码示例 )(二)
133 0
【Groovy】闭包 Closure ( 闭包参数绑定 | curry 函数 | rcurry 函数 | ncurry 函数 | 代码示例 )(二)
【Groovy】Groovy 方法调用 ( Groovy 构造函数中为成员赋值 | Groovy 函数的参数传递与键值对参数 | 完整代码示例 )
【Groovy】Groovy 方法调用 ( Groovy 构造函数中为成员赋值 | Groovy 函数的参数传递与键值对参数 | 完整代码示例 )
400 0
【Groovy】Groovy 方法调用 ( Groovy 构造函数中为成员赋值 | Groovy 函数的参数传递与键值对参数 | 完整代码示例 )