The Wayback Machine - https://web.archive.org/web/20120522213410/http://groovy.codehaus.org/Closures

Closures Add comment to Wiki View in Wiki Edit Wiki page Printable Version

What is a Closure?

A Groovy Closure is like a "code block" or a method pointer. It is a piece of code that is defined and then executed at a later point. It has some special properties like implicit variables, support for currying and support for free variables (which we'll see later on). We'll ignore the nitty gritty details for now (see the formal definition if you want those) and look at some simple examples.

Simple Example

Note that in the above example, "hello!" is printed when the Closure is called, not when it is defined.

Parameters

Closure parameters are listed before the -> token, like so:

The -> token is optional and may be omitted if your Closure definition takes fewer than two parameters.

Parameter notes

A Closure without -> , i.e. {} , is a Closure with one argument that is implicitly named as 'it'. (see below for details) In some cases, you need to construct a Closure with zero arguments, e.g. using GString for templating, defining EMC Property etc. You have to explicity define your Closure as { -> } instead of just { }

You can also use varargs as parameters, refer to the Formal Guide for details. A JavaScript-style dynamic args could be simulated, refer to the Informal Guide.

Free variables

Closures may refer to variables not listed in their parameter list. Such variables are referred to as "free" variables. They are "bound" to variables within the scope where they are defined:

Or another example:

Implicit variables

Within a Groovy Closure, several variables are defined that have special meaning:

it

If you have a Closure that takes a single argument, you may omit the parameter definition of the Closure, like so:

this, owner, and delegate

this : as in Java, this refers to the instance of the enclosing class where a Closure is defined
owner : the enclosing object (this or a surrounding Closure)
delegate : by default the same as owner, but changeable for example in a builder or ExpandoMetaClass

Example:

Closures as Method Arguments

When a method takes a Closure as the last parameter, you can define the Closure inline, like so:

In the above example, the collect method accepts a List and a Closure argument. The same could be accomplished like so (although it is more verbose):

More Information

Groovy extends java.lang.Object and many of the Collection and Map classes with a number of methods that accept Closures as arguments. See GDK Extensions to Object for practical uses of Groovy's Closures.

See Also:

 

Search

Results of your search request can come from various sources: the Groovy website itself, the JIRA issues, the API documentation, as well as a few other interesting Groovy-related blogs.

  By  -  pages  -  views  - last modified