Having programmed in Groovy quite a bit I know classes in certain packages are automatically imported. What's the scoop for 1) Java and 2) Groovy? Is there a definitive list of ones you don't need to specify an import for for each of these languages?

link|improve this question

44% accept rate
feedback

2 Answers

up vote 6 down vote accepted

In Java, the only package imported by default is

java.lang.*

This is where objects such as String and Object reside.

According to here, the list of packages for groovy are

java.io.*
java.lang.*
java.math.BigDecimal
java.math.BigInteger
java.net.*
java.util.*
groovy.lang.*
groovy.util.*
link|improve this answer
3  
Java also automatically imports the current package. – Peter Lawrey Feb 6 '11 at 12:23
feedback

AFAIK, java only imports

java.lang.*

wheras groovy imports:

java.io.*
java.lang.*
java.math.BigDecimal
java.math.BigInteger
java.net.*
java.util.*
groovy.lang.*
groovy.util.*

According to http://groovy.codehaus.org/Differences+from+Java

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.