Groovy tries to be as natural as possible for Java developers. We've tried to follow the principle of least surprise when designing Groovy, particularly for developers learning Groovy who've come from a Java background.
Here we list all the major differences between Java and Groovy.
Here we list the common things you might trip over if you're a Java developer starting to use Groovy
- == means equals on all types and === means identity compare. In java there's a wierd part of the syntax where == means equality for primitive types and == means identity for objects. Since we're using autoboxing this would be very confusing for Java developers (since x == 5 would be mostly false if x was 5
. So for simplicity == means equals() in Groovy
- if you want to use the neat syntax sugar for passing closures into methods or using GroovyMarkup - be aware that the { must be on the same line.
For example the following is valid groovy
[1, 2, 3].each { println it }
However if you want to specify the { on a separate line then you must use the more verbose parentheses version like this
[1, 2, 3].each (
{ println it }
)
i.e. you cannot do this
[1, 2, 3].each
{
println it
}
As the above is interpreted as the use of the 'each' property and then the creation of a closure; which is not passed into an each() method call.
- semicolon is optional. Use them if you like (though you must use them to put several statements on one line).
- the return keyword is optional
- you can use the this keyword inside static methods (which refers to this class)
- things are public by default. There's no need to use the public modifier on classes or methods though you can if you like
- protected in Groovy is the equivalent of both package-protected and protected in Java. i.e. you can have friends in the same package - or derived classes can also see protected members.
- closures
- native syntax for lists and maps
- GroovyMarkup and GPath support
- native support for regular expressions
- polymorphic iteration and powerful switch statement
- dynamic and static typing is supported - so you can omit the type declarations on methods, fields and variables
- you can embed expressions inside strings
- lots of new helper methods added to the JDK
- simpler syntax for writing beans for both properties and adding event listeners