摘要:
Summary 执行一个外部的脚本。 如果单独执行一个脚本我们一行一行写就行,如果需要传入参数,返回参数,我们就定义一个 Closure Demo import groovy.json.JsonSlurper class Main { static void main(args) { def shell = new GroovyShell() ... 阅读全文
摘要:
Summary closure 翻译成闭包,这里我们先不要翻译过来。它是 Groovy 的一个强大的特性。 closure 中可以包含代码逻辑,最后一行语句,表示返回值,也可以显示的使用return关键字。 我们可以将 closure 作为参数传入另外一个 closure,同时可以从一个 closure 返回一个 closure。 定义&调用&返回值 默认定义完成的时候它不会执行代码,... 阅读全文