标签: reflection groovy
我有一个groovy脚本,它有一个带有2个参数的函数,其中一个是hashmap。我想在函数内部检查hashmap变量的名称是否包含子字符串。我该怎么做?
def myfunc(String var, HashMap var2) { // need a routine to retrive the name of the variable var2 }
答案 0 :(得分:2)
这里解释得很好: Getting the name of a method parameter
要访问groovy脚本的方法,请遵循以下语法:
metaClass.methods