up vote 36 down vote favorite
31
share [g+] share [fb]

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
link|improve this question
2  
25 favorites and 22 upvotes ... something is wrong with the picture. – ripper234 Oct 22 '10 at 6:17
feedback

16 Answers

up vote 23 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]
link|improve this answer
What does the third line mean? – ripper234 Oct 21 '10 at 21:43
4  
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
Ah. Now that I see it, it is rather cool :) – ripper234 Oct 22 '10 at 6:13
feedback

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
 }
link|improve this answer
that brings me old memories about object pascal :-) – fortran Sep 7 '09 at 7:29
feedback

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.

link|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
@gotomanners You bolded the "Elvis" in the answer text an hour ago. Any particular reason for this, besides perhaps causing the question to appear at the top of the Groovy Tagged Questions page? – Vorg van Geir Aug 15 '11 at 12:41
show 1 more comment
feedback

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"]
link|improve this answer
+1 just saved mi a tons of time :) – Dan Aug 19 '09 at 17:41
feedback

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.

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

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

link|improve this answer
New to Groovy, having a bit of difficulty parsing this. – ripper234 Oct 22 '10 at 6:15
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
feedback

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.)

link|improve this answer
feedback
println 
"""
Groovy has multi-line strings.
Hooray!
"""
link|improve this answer
Ah, the beauty of multi-line strings. Every language should adopt these. – ripper234 Oct 22 '10 at 6:14
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
feedback

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"]
link|improve this answer
feedback

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
}
link|improve this answer
feedback

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']
link|improve this answer
feedback

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 ]
link|improve this answer
feedback

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
}
link|improve this answer
feedback

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
link|improve this answer
feedback

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.

link|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
feedback

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"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown