Groovy&Grails-技术问答-Groovy闭包

闭包可能是Groovy中最重要的概念,使用概率也非常高,下面的几个代码让我们熟悉闭包的作用。

最简单的使用


def clos1 = { println "hello world!" }
clos1()

带参数使用


def clos2 = { arg1,arg2 -> println arg1+arg2 }
clos2(3,4)

在闭包中定义方法


def method1(book) {
    def prefix = "the title of the book is:"
    return { println prefix + book}
}

def clos3 = method1("Groovy")
clos3()

将闭包作为方法的参数传递


public class Employee {
    def salary
    public double calculateRaise(c) {
        return c(salary)
    }
}

Employee employee1 = new Employee(salary:1000)
def raise1 = {salary -> (salary * 1.5)}
assert employee1.calculateRaise(raise1) == 1500

你可能感兴趣的:(Groovy&Grails-技术问答-Groovy闭包)