GroovyMOP 元对象协议与元编程 ( 通过 MetaMethod#invoke 执行 Groovy 方法 )
Posted 韩曙亮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GroovyMOP 元对象协议与元编程 ( 通过 MetaMethod#invoke 执行 Groovy 方法 )相关的知识,希望对你有一定的参考价值。
文章目录
一、通过 MetaMethod#invoke 执行 Groovy 方法
已经定义 Groovy 类 Student , 并创建该类对象 ;
class Student
def name;
def hello()
println "Hello $name"
def student = new Student(name: "Tom")
通过 MetaMethod#invoke 执行 Groovy 方法 :
首先 , 获取 Groovy 对象的 MetaClass ,
student.getMetaClass()
然后 , 调用 MetaClass#getMetaMethod 方法 获取 MetaMethod 对象 ,
MetaMethod metaMethod = student.getMetaClass().getMetaMethod("name", null)
最后 , 调用 MetaMethod#invoke 方法 , 执行获取的 MetaMethod 对应的 Groovy 方法 ;
metaMethod.invoke(student, null)
二、完整代码示例
完整代码示例 :
class Student
def name;
def hello()
println "Hello $name"
def student = new Student(name: "Tom")
// 直接调用 hello 方法
student.hello()
// 通过 GroovyObject#invokeMethod 调用 hello 方法
// 第二个参数是函数参数 , 如果为 void 则传入 null
student.invokeMethod("hello", null)
// 获取 元方法
MetaMethod metaMethod = student.getMetaClass().getMetaMethod("name", null)
// 执行元方法
metaMethod.invoke(student, null)
执行结果 :
Hello Tom
Hello Tom
Hello Tom
以上是关于GroovyMOP 元对象协议与元编程 ( 通过 MetaMethod#invoke 执行 Groovy 方法 )的主要内容,如果未能解决你的问题,请参考以下文章
GroovyMOP 元对象协议与元编程 ( 使用 Groovy 元编程进行函数拦截 | 通过 MetaClass#invokeMethod 方法调用类其它方法 )
GroovyMOP 元对象协议与元编程 ( 方法注入 | 使用 ExpandoMetaClass 进行方法注入 )
GroovyMOP 元对象协议与元编程 ( 方法注入 | 使用 Category 分类注入方法 )
GroovyMOP 元对象协议与元编程 ( 方法委托 | 批量方法委托 )