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?
|
feedback
|
|
In Java, the only package imported by default is
This is where objects such as String and Object reside. According to here, the list of packages for groovy are
| |||||
feedback
|
|
AFAIK, java only imports
wheras groovy imports:
According to http://groovy.codehaus.org/Differences+from+Java | |||
|
feedback
|