Hidden features of Groovy? - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T22:32:00Zhttp://stackoverflow.com/feeds/question/303512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/303512/hidden-features-of-groovy19Hidden features of Groovy?melling2008-11-19T21:53:57Z2009-09-07T07:13:31Z
<p>It seems like Groovy was forgotten in this thread so I'll just ask the same question for Groovy.</p>
<ul>
<li>Try to limit answers to Groovy core</li>
<li>One feature per answer</li>
<li>Give an example and short description of the feature, not just a link to documentation</li>
<li>Label the feature using bold title as the first line</li>
</ul>
<p>See also:</p>
<ol>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-ruby">Hidden features of Ruby</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a></li>
<li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li>
</ol>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/303561#3035617Answer by Robert Fischer for Hidden features of Groovy?Robert Fischer2008-11-19T22:07:37Z2008-11-19T22:07:37Z<p>Using hashes as pseudo-objects.</p>
<pre><code>def x = [foo:1, bar:{-> println "Hello, world!"}]
x.foo
x.bar()
</code></pre>
<p>Combined with duck typing, you can go a long way with this approach. Don't even need to whip out the "as" operator.</p>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/303641#30364114Answer by Paul King for Hidden features of Groovy?Paul King2008-11-19T22:31:41Z2008-11-19T22:31:41Z<p><strong>Using the spread-dot operator</strong></p>
<pre><code>def animals = ['ant', 'buffalo', 'canary', 'dog']
assert animals.size() == 4
assert animals*.size() == [3, 7, 6, 3]
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/303704#303704-1Answer by Robert Fischer for Hidden features of Groovy?Robert Fischer2008-11-19T22:53:47Z2008-11-19T22:53:47Z<p>Argument reordering with implicit arguments is another nice one.</p>
<p>This code:</p>
<pre><code>def foo(Map m=[:], String msg, int val, Closure c={}) {
[...]
}
</code></pre>
<p>Creates all these different methods:</p>
<pre><code>foo("msg", 2, x:1, y:2)
foo(x:1, y:2, "blah", 2)
foo("blah", x:1, 2, y:2) { [...] }
foo("blah", 2) { [...] }
</code></pre>
<p>And more. It's impossible to screw up by putting named and ordinal arguments in the wrong order/position.</p>
<p>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.</p>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/304286#3042869Answer by Bill James for Hidden features of Groovy?Bill James2008-11-20T03:55:20Z2008-11-20T03:55:20Z<p>Anyone know about Elvis?</p>
<pre><code>def default = "hello";
def obj = null;
def obj2 = obj ?: default; // sets obj2 to default
obj = "world"
def obj3 = obj ?: default; // sets obj3 to obj (since it's non-null)
</code></pre>
<p>Thank you very much.</p>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/304534#3045344Answer by krosenvold for Hidden features of Groovy?krosenvold2008-11-20T07:13:38Z2008-11-20T07:13:38Z<p>For testing java code with groovy, object graph builder is amazing:</p>
<pre><code>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' )
}
}
</code></pre>
<p>Standard feature, but still really nice.</p>
<p><a href="http://groovy.codehaus.org/ObjectGraphBuilder" rel="nofollow">http://groovy.codehaus.org/ObjectGraphBuilder</a></p>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/305040#3050403Answer by Rui Vieira for Hidden features of Groovy?Rui Vieira2008-11-20T11:46:24Z2008-11-21T10:11:20Z<p>Unlike Java, in Groovy, anything can be used in a <strong>switch</strong> statement, not just primitive types.
In a typical <em>eventPerformed</em> method</p>
<pre><code>switch(event.source) {
case object1:
// do something
break
case object2:
// do something
break
}
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/305058#30505811Answer by Rui Vieira for Hidden features of Groovy?Rui Vieira2008-11-20T11:54:38Z2008-11-20T11:54:38Z<p>The <strong>with</strong> method allows to turn this:</p>
<pre><code> myObj1.setValue(10)
setTitle(myObj1.getName())
myObj1.setMode(Obj1.MODE_NORMAL)
</code></pre>
<p>into this</p>
<pre><code> myObj1.with {
value = 10
title = name
mode = MODE_NORMAL
}
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/306404#3064044Answer by John Flinchbaugh for Hidden features of Groovy?John Flinchbaugh2008-11-20T18:43:05Z2009-06-01T01:13:40Z<pre><code>println
"""
Groovy has multi-line strings.
Hooray!
"""
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/306441#3064410Answer by John Flinchbaugh for Hidden features of Groovy?John Flinchbaugh2008-11-20T18:56:02Z2008-11-20T18:56:02Z<p>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:</p>
<pre><code>new File("/etc/profile").withReader { r ->
System.out << r
}
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/307985#3079852Answer by Ted Naleid for Hidden features of Groovy?Ted Naleid2008-11-21T05:47:41Z2008-11-21T06:25:35Z<p>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:</p>
<pre><code>def filePaths = """
/tmp/file.txt
/usr/bin/dummy.txt
"""
assert (filePaths =~ /(.*)\/(.*)/).collect { full, path, file ->
"$file -> $path"
} == ["file.txt -> /tmp", "dummy.txt -> /usr/bin"]
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/307997#3079977Answer by Ted Naleid for Hidden features of Groovy?Ted Naleid2008-11-21T05:52:05Z2009-06-15T17:20:56Z<p>Finding out what methods are on an object is as easy as asking the metaClass:</p>
<pre><code>"foo".metaClass.methods.name.sort().unique()
</code></pre>
<p>prints: </p>
<pre><code>["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"]
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/996278#9962781Answer by Don for Hidden features of Groovy?Don2009-06-15T13:59:39Z2009-06-15T17:19:21Z<p><strong>Closure-Based Interface Implementation</strong></p>
<p>If you have a typed reference such as:</p>
<pre><code>MyInterface foo
</code></pre>
<p>You can implement the entire interface using:</p>
<pre><code>foo = {Object[] args -> println "This closure will be called by ALL methods"} as MyInterface
</code></pre>
<p>Alternatively, if you want to implement each method separately, you can use:</p>
<pre><code>foo = [bar: {-> println "bar invoked"},
baz: {param1 -> println "baz invoked with param $param1" ] as MyInterface
</code></pre>