Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems like Groovy was forgotten in this thread so I'll just ask the same question for Groovy.

  • Try to limit answers to Groovy core
  • One feature per answer
  • Give an example and short description of the feature, not just a link to documentation
  • Label the feature using bold title as the first line

See also:

  1. Hidden features of Python
  2. Hidden features of Ruby
  3. Hidden features of Perl
  4. Hidden features of Java
share|improve this question

19 Answers

up vote 34 down vote accepted

Using the spread-dot operator

def animals = ['ant', 'buffalo', 'canary', 'dog']
assert animals.size() == 4
assert animals*.size() == [3, 7, 6, 3]
share|improve this answer
What does the third line mean? – ripper234 Oct 21 '10 at 21:43
5  
From context it means invoke the size method on each array element and return an array of the results. Pretty cool actually :-) – Michael Rutherfurd Oct 22 '10 at 1:38
1  
Ah. Now that I see it, it is rather cool :) – ripper234 Oct 22 '10 at 6:13

The with method allows to turn this:

 myObj1.setValue(10)
 setTitle(myObj1.getName())
 myObj1.setMode(Obj1.MODE_NORMAL)

into this

 myObj1.with {
    value = 10
    title = name
    mode = MODE_NORMAL
 }
share|improve this answer
1  
that brings me old memories about object pascal :-) – fortran Sep 7 '09 at 7:29
Just be careful with constructors, stackoverflow.com/a/7345579/20774 – James McMahon Apr 4 at 18:00

Anyone know about Elvis?

def d = "hello";
def obj = null;

def obj2 = obj ?: d;   // sets obj2 to default
obj = "world"

def obj3 = obj ?: d;  // sets obj3 to obj (since it's non-null)

Thank you very much.

share|improve this answer
is this the same as the null coalescing operator (??) from C#? – Alex Baranosky Mar 9 '10 at 6:25
It would seem so, yes, though I had to look up the C# op. – Bill James Mar 9 '10 at 6:47
Not exactly, It is a shortened ternary operator. I did a writeup on it: colinharrington.net/blog/2008/10/groovy-elvis-operator You can also do full expressions in there :-) – Colin Harrington Dec 13 '10 at 5:29
The code posted in the answer doesn't compile because a keyword, "default", is being used as a variable. Use "d" instead to make the code compile. – Vorg van Geir Aug 15 '11 at 12:31
2  
No important reason at all, just keeping with the convention that the OP suggested. At the time I didn't take into consideration the refreshing effect my action would cause. – gotomanners Aug 15 '11 at 12:49
show 1 more comment

Finding out what methods are on an object is as easy as asking the metaClass:

"foo".metaClass.methods.name.sort().unique()

prints:

["charAt", "codePointAt", "codePointBefore", "codePointCount", "compareTo",
 "compareToIgnoreCase", "concat", "contains", "contentEquals", "copyValueOf", 
 "endsWith", "equals", "equalsIgnoreCase", "format", "getBytes", "getChars", 
 "getClass", "hashCode", "indexOf", "intern", "lastIndexOf", "length", "matches", 
 "notify", "notifyAll", "offsetByCodePoints", "regionMatches", "replace", 
 "replaceAll", "replaceFirst", "split", "startsWith", "subSequence", "substring", 
 "toCharArray", "toLowerCase", "toString", "toUpperCase", "trim", "valueOf", "wait"]
share|improve this answer
+1 just saved mi a tons of time :) – Dan Aug 19 '09 at 17:41
This seems silly at first. But it's incredibly useful. In python you have the dir built-in function: dir("foo") gives all methods for a string. – santiagobasulto Jun 6 '12 at 20:39

Using hashes as pseudo-objects.

def x = [foo:1, bar:{-> println "Hello, world!"}]
x.foo
x.bar()

Combined with duck typing, you can go a long way with this approach. Don't even need to whip out the "as" operator.

share|improve this answer
1  
new to Groovy - that's very nice indeed. – Steve B. Nov 19 '08 at 22:30
2  
Super useful for quick mocks in unit tests. – Jim Norman May 12 '11 at 21:26

To intercept missing static methods use the following

 Foo {
    static A() { println "I'm A"}

     static $static_methodMissing(String name, args) {
        println "Missing static $name"
     }
 }

 Foo.A() -> "I'm A"
 Foo.B() -> "Missing static B"

-Ken

share|improve this answer
New to Groovy, having a bit of difficulty parsing this. – ripper234 Oct 22 '10 at 6:15
2  
The Object Foo does not have a static method named B defined. Yet you can implement one on the fly by adding a method called "$static_methodMissing(String, Object)" and implementing whatever you want there. This magic method is called whenever a static method is invoked and the object does not have that static method defined. – Hamlet D'Arcy Feb 14 '11 at 9:12

For testing java code with groovy, object graph builder is amazing:

def company = builder.company( name: 'ACME' ) {
   address( id: 'a1', line1: '123 Groovy Rd', zip: 12345, state: 'JV' )
   employee(  name: 'Duke', employeeId: 1 ){
      address( refId: 'a1' )
   }
}

Standard feature, but still really nice.

http://groovy.codehaus.org/ObjectGraphBuilder

(You do need to give any properties of your POJO that are Lists a default value of an empty list rather than null for builder support to work.)

share|improve this answer
println 
"""
Groovy has "multi-line" strings.
Hooray!
"""
share|improve this answer
Ah, the beauty of multi-line strings. Every language should adopt these. – ripper234 Oct 22 '10 at 6:14
1  
Not sure why a multi-line string needs " " " as a delimiter when " could have been extended to allow multi-line as well as single-line strings. – Vorg van Geir Aug 15 '11 at 12:45
@VorgvanGeir using """ means you don't have to escape ". – Brian Mortenson Aug 27 '12 at 21:51
@Brian True, but """a\bc"de"f\g""" doesn't compile because you have to escape the \ or \g, and the \b will act like a backspace unless you escape it. What's the point in not needing to escape " when you still need to escape EVERY other special sequence inside a string? – Vorg van Geir Aug 28 '12 at 4:26

Unlike Java, in Groovy, anything can be used in a switch statement, not just primitive types. In a typical eventPerformed method

switch(event.source) {
   case object1:
        // do something
        break
   case object2:
        // do something
        break
}
share|improve this answer

Closures can make all the old try-finally games of resource management go away. The file stream is automatically closed at the end of the block:

new File("/etc/profile").withReader { r ->
    System.out << r
}
share|improve this answer

In groovy 1.6, regular expressions work with all of the closure iterators (like each, collect, inject, etc) and allow you to easily work with the capture groups:

def filePaths = """
/tmp/file.txt
/usr/bin/dummy.txt
"""

assert (filePaths =~ /(.*)\/(.*)/).collect { full, path, file -> 
        "$file -> $path"
    } ==  ["file.txt -> /tmp", "dummy.txt -> /usr/bin"]
share|improve this answer

You can convert a list to a map by using toSpreadMap(), convenient at times when the order in the list is enough to determine the keys and the values associated with them. See example below.

def list = ['key', 'value', 'foo', 'bar'] as Object[]
def map = list.toSpreadMap()

assert 2 == map.size()
assert 'value' == map.key
assert 'bar' == map['foo']
share|improve this answer

Using the Spaceship Operator

I like the Spaceship operator, useful for all sorts of custom sorting scenarios. Some examples of usage are here. One situation in which it's particularly helpful is in creating a comparator on the fly of an object using multiple fields. e.g.

def list = [
    [ id:0, first: 'Michael', last: 'Smith', age: 23 ],
    [ id:1, first: 'John', last: 'Smith', age: 30 ],
    [ id:2, first: 'Michael', last: 'Smith', age: 15 ],    
    [ id:3, first: 'Michael', last: 'Jones', age: 15 ],   
]

// sort list by last name, then first name, then by descending age
assert (list.sort { a,b -> a.last <=> b.last ?: a.first <=> b.first ?: b.age <=> a.age })*.id == [ 3,1,0,2 ]
share|improve this answer

Destructuring

It might be called something else in Groovy; it's called destructuring in clojure. You'll never believe how handy it can come.

def list = [1, 'bla', false]
def (num, str, bool) = list
assert num == 1
assert str == 'bla'
assert !bool
share|improve this answer
Yeah, this one is really cool! – eugene82 Feb 19 at 15:07

Closure-Based Interface Implementation

If you have a typed reference such as:

MyInterface foo

You can implement the entire interface using:

foo = {Object[] args -> println "This closure will be called by ALL methods"} as MyInterface

Alternatively, if you want to implement each method separately, you can use:

foo = [bar: {-> println "bar invoked"}, 
    baz: {param1 -> println "baz invoked with param $param1"}] as MyInterface
share|improve this answer
Missing right brace? – Ed Staub Jan 4 at 20:43
@EdStaub thanks, fixed it – Don Jan 7 at 8:52

Argument reordering with implicit arguments is another nice one.

This code:

def foo(Map m=[:], String msg, int val, Closure c={}) {
  [...]
}

Creates all these different methods:

foo("msg", 2, x:1, y:2)
foo(x:1, y:2, "blah", 2)
foo("blah", x:1, 2, y:2) { [...] }
foo("blah", 2) { [...] }

And more. It's impossible to screw up by putting named and ordinal arguments in the wrong order/position.

Of course, in the definition of "foo", you can leave off "String" and "int" from "String msg" and "int val" -- I left them in just for clarity.

share|improve this answer
I wish this were the case, but currently Groovy (1.6) only supports named arguments for object constructors. You can use this syntax for method calls, but it packages any named arguments up into a Map, then looks for foo(Map). – Cody Casterline Sep 8 '09 at 21:19
I'm confused as to what you think I said that implied different. – Robert Fischer Jan 4 '10 at 21:17

I think it's a combination of closures as parameter and parameter-default-values:

public void buyItems(Collection list, Closure except={it > 0}){
  list.findAll(){except(it)}.each(){print it}
}
buyItems([1,2,3]){it > 2}
buyItems([0,1,2])

prints: "312"

share|improve this answer

Groovy can work a lot like Javascript. You can have private vars and functions via closure. You can also curry functions with closures.

class FunctionTests {

def privateAccessWithClosure = {

    def privVar = 'foo'

    def privateFunc = { x -> println "${privVar} ${x}"}

    return {x -> privateFunc(x) } 
}


def addTogether = { x, y ->
    return x + y
}

def curryAdd = { x ->
    return { y-> addTogether(x,y)}
}

public static void main(String[] args) {
    def test = new FunctionTests()

    test.privateAccessWithClosure()('bar')

    def curried = test.curryAdd(5)

    println curried(5)
}
}

output:

foo bar 10

share|improve this answer

Using the spread operator in method parameters

This is a great help when converting code to data:

def exec(operand1,operand2,Closure op) {
    op.call(operand1,operand2)
}

def addition = {a,b->a+b}
def multiplication = {a,b->a*b}

def instructions = [
     [1,2,addition],
     [2,2,multiplication]
]

instructions.each{instr->
    println exec(*instr)
}

Also helpful is this usage:

String locale="en_GB"

//this invokes new Locale('en','GB')
def enGB=new Locale(*locale.split('_'))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.