Groovy 闭包.pdfVIP

  • 3
  • 0
  • 约3.82千字
  • 约 5页
  • 2017-08-06 发布于浙江
  • 举报
Groovy 闭包

Groovy 闭包 闭包是⼀个短的匿名代码块。它通常跨越⼏⾏代码。⼀个⽅法甚⾄可以将代码块作为 参数。它 是匿名的。 下⾯是⼀个简单闭包的例⼦,它是什么样⼦。 class Example { static void main(String[] args) { def clos = {println Hello World}; clos call(); } } 在上⾯的例⼦中,代码⾏ - {println“Hello World”}被称为闭包。此标识符引⽤的代码 块可以使⽤call语句执⾏。 当我 运⾏上⾯的程序,我 将得到以下结果 - Hello World 闭包中的形式参数 闭包也可以包含形式参数,以使它 更有⽤,就像Groovy 中的⽅法⼀样。 class Example { static void main(String[] args) { def clos = {param-println Hello ${param}}; clos call(World); } } 在上⾯的代码⽰例中,注意使⽤$ {param} ,这导致closure接受⼀个参数。当通过 clos.call语句调⽤闭包时,我 现在可以选择将⼀个参数传递给闭包。 当我 运⾏上⾯的程序,我 将得到以下结果 - Hello World 下⼀个图重复了前⾯的例⼦并产⽣相同的结果,但显⽰可以使⽤被称为它的隐式单个 参数。这⾥的it是Groovy 中的关键字。 class Example { static void main(String[] args) { def clos = {println Hello ${it}}; clos call(World); } } 当我 运⾏上⾯的程序,我 将得到以下结果 - Hello World 闭包和变量 更正式地,闭包可以在定义闭包时引⽤变量。以下是如何实现这⼀点的⽰例。 class Example { static void main(String[] args) { def str1 = Hello; def clos = {param - println ${str1} ${param}} clos call(World); // We are now changing the value of the String str1 which is str1 = Welcome; clos call(World); } } 在上⾯的例⼦中,除了向闭包传递参数之外,我 还定义了⼀个名为str 1的变量。闭 包也接受变量和参数。 当我 运⾏上⾯的程序,我 将得到以下结果 - Hello World Welcome World 在⽅法中使⽤闭包 闭包也可以⽤作⽅法的参数。在Groovy 中,很多⽤于数据类型 (例如列表和集合)的 内置⽅法都有闭包作为参数类型。 以下⽰例显⽰如何将闭包作为参数发送到⽅法。 class Example { def static Display(clo) { // This time the $param parameter gets replaced by the strin clo call(Inner); } static void main(String[] args) { def str1 = Hello; def clos = { param - println ${str1} ${param} } clos call(World); // We are now changing the value of the String str1 which is str1 = Welcome; clos call(World); // Passing our closure to a method Example Display(clos); } } 在上述⽰例中, 我 定义⼀个名为Display的静态⽅法,它将闭包作为参数。

文档评论(0)

1亿VIP精品文档

相关文档