- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
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)