【Groovy】Groovy 动态语言特性 ( Groovy 中函数实参自动类型推断 | 函数动态参数注意事项 )
【摘要】
文章目录
前言一、Groovy 中函数实参自动类型推断二、函数动态参数注意事项三、完整代码示例
前言
Groovy 是动态语言 , Java 是静态语言 ;
本篇博客讨论 Groovy ...
前言
Groovy 是动态语言 , Java 是静态语言 ;
本篇博客讨论 Groovy 中 , 函数实参的自动类型推断 ;
一、Groovy 中函数实参自动类型推断
定义两个不同的类 Student 和 Worker , 在类中都定义 hello 方法 ;
class Student {
def hello(){
println "Hello Student"
}
}
class Worker {
def hello(){
println "Hello Worker"
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
声明一个方法 , 接收参数 object , 暂不指定参数类型 , 在函数中调用参数对象的 hello 方法 ;
void fun(object) {
object.hello()
}
- 1
- 2
- 3
分别向该 fun 函数中传入 Student 和 Worker 对象 , 则会分别调用对应类中的 hello 方法 ;
fun(new Student())
fun(new Worker())
- 1
- 2
二、函数动态参数注意事项
这里要特别注意 , 不要传递错误的对象 , 如果类中没有定义 hello 方法 , 编译时可以编译通过 , 但是运行时会报错 ;
如 : 定义了一个没有 hello 方法的类 ,
class Farmer {}
- 1
该该类实例对象传入 fun 方法作为参数 ,
fun(new Farmer())
- 1
就会报如下错误 :
Caught: groovy.lang.MissingMethodException: No signature of method: Farmer.hello() is applicable for argument types: () values: []
Possible solutions: sleep(long), sleep(long, groovy.lang.Closure), getAt(java.lang.String), each(groovy.lang.Closure), split(groovy.lang.Closure), wait()
groovy.lang.MissingMethodException: No signature of method: Farmer.hello() is applicable for argument types: () values: []
Possible solutions: sleep(long), sleep(long, groovy.lang.Closure), getAt(java.lang.String), each(groovy.lang.Closure), split(groovy.lang.Closure), wait()
at Worker$hello.call(Unknown Source)
at Groovy.fun(Groovy.groovy:17)
at Groovy$fun.callCurrent(Unknown Source)
at Groovy.run(Groovy.groovy:22)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
为了避免上述问题 , 可以在函数上使用 @TypeChecked 注解 , 但是相应的 , 也就失去了 Groovy 语言的动态性 ;
@TypeChecked
void fun(Student object) {
object.hello()
}
- 1
- 2
- 3
- 4
三、完整代码示例
完整代码示例 :
class Student {
def hello(){
println "Hello Student"
}
}
class Worker {
def hello(){
println "Hello Worker"
}
}
class Farmer {}
void fun(object) {
object.hello()
}
fun(new Student())
fun(new Worker())
// 下面的用法会报 Caught: groovy.lang.MissingMethodException 异常
//fun(new Farmer())
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
执行结果 :
Hello Student
Hello Worker
- 1
- 2
文章来源: hanshuliang.blog.csdn.net,作者:韩曙亮,版权归原作者所有,如需转载,请联系作者。
原文链接:hanshuliang.blog.csdn.net/article/details/122516154
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)