When JVM loads a class A, does it load all of the classes used within A?
And I'm wondering if import declarations are matter somehow to the loading process?
The link to JLS would be appreciated.
|
When JVM loads a class A, does it load all of the classes used within A? The link to JLS would be appreciated.
| |||
|
feedback
|
|
Import and class loading are unrelated. The former just saves typing: it allows you to use the short class name rather than the fully-resolved class name in your code. Classes are loaded by the JVM when they're used for the first time. | |||||||
feedback
|
|
http://java.sun.com/docs/books/jvms/second_edition/html/Concepts.doc.html#21410 section 2.17.1 "Virtual Machine Start-up" | |||
|
feedback
|