groovy 将方法转换为闭包

示例

可以使用运算符将方法转换为闭包。

def add(def a, def b) { a + b }    

Closure addClosure = this.&add
assert this.add(4, 5) == addClosure(4, 5)