【Groovy】MOP 元对象协议与元编程 ( 方法注入 | 使用 Mixin 混合进行方法注入 )
【摘要】
文章目录
一、使用 Mixin 混合进行方法注入二、完整代码示例
一、使用 Mixin 混合进行方法注入
使用 Mixin 混合进行方法注入 , 为下面的 Stud...
一、使用 Mixin 混合进行方法注入
使用 Mixin 混合进行方法注入 , 为下面的 Student 类注入方法 ;
class Student {
def name
}
首先 , 定义被注入的方法 , 定义一个类 , 在类中定义被注入的方法 , 这里需要注意 , 被注入的方法没有 self 参数 , 不能访问其本身对象 , 如果需要访问本身 , 需要通过参数传递进去 ;
// 定义被注入的方法
class Hello {
def hello (Student student) {
println "Hello ${student.name}"
}
}
然后 , 调用类的 mixin 方法 , 将注入方法所在的类混合进指定的 需要注入方法 的类中 ; 可以直接向 Student 类中混合 , 也可以像 Student.metaClass 中混合 , 二者效果相同 ;
// 将 Hello 类中的方法注入到 Student 类中
Student.mixin(Hello)
最后 , 直接调用被注入的方法 , 这里要注意 , 使用 Student 对象调用 hello 方法时 , 同时需要在参数中 , 也传递一个该对象 ;
// 创建 Student 对象
def student = new Student(name: "Tom")
// 调用被注入的方法
student.hello(student)
二、完整代码示例
完整代码示例 :
class Student {
def name
}
// 定义被注入的方法
class Hello {
def hello (Student student) {
println "Hello ${student.name}"
}
}
// 将 Hello 类中的方法注入到 Student 类中
Student.mixin(Hello)
// 创建 Student 对象
def student = new Student(name: "Tom")
// 调用被注入的方法
student.hello(student)
执行结果 :
Hello Tom

文章来源: hanshuliang.blog.csdn.net,作者:韩曙亮,版权归原作者所有,如需转载,请联系作者。
原文链接:hanshuliang.blog.csdn.net/article/details/122678548
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)