我创建了一个代码示例,显示了我遇到的问题:
class BindingExample {
public static void main(String[] args) {
Closure closure1 = {
printit.call("Hello from closure 1")
}
Closure closure2 = {
printit("Hello from closure 2")
}
Closure printit = { s ->
println("printing: "+s)
}
Binding binding = new Binding()
binding.setVariable("printit", printit)
closure1.delegate = binding
closure2.delegate = binding
closure1() //This works fine
closure2() //This does not.
//Why does .call() work and () alone not? Most documentation says they're the same.
}
}
Printit 是一个Closure
,文档表明它实现了 doCall,因此可以通过 () 以短格式调用。
但是,当此闭包通过绑定到委托而可用时,仅允许调用的长格式版本。输出是:
printing: Hello from closure 1
Exception in thread "main" groovy.lang.MissingMethodException: No signature of method: groovy.lang.Binding.printit() is applicable for argument types: (java.lang.String) values: [Hello from closure 2]
有人可以解释为什么会这样吗?如果可能的话,我还想看看如何制作它,以便简短版本的工作。我可以通过将其定义printit
为适当的静态方法(不是闭包)来使其工作,但这不适用于我的情况,因为我实际上需要为 printit 提供一些仅在方法范围内可用的数据(不包括在这个例子,因为我的问题与绑定本身有关)。