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.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 6 down vote accepted

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.

link|improve this answer
Did I correctly understand the JLS, that it is implementation dependant what kind of resolution (static or lazy) would be applied? – Alex Stamper Apr 18 '11 at 12:40
I don't know what static resolution means; it's always been my understanding that classes are loaded when they are needed. That says "lazy" to me. – duffymo Apr 18 '11 at 12:57
I referred to the terms in the link you provided. =) – Alex Stamper Apr 18 '11 at 13:09
feedback

import merely helps the programmer. When the class file is compiled the Qualified Name of the variables is stored in the .class file so the JVM knows what it needs to load.

http://java.sun.com/docs/books/jvms/second_edition/html/Concepts.doc.html#21410 section 2.17.1 "Virtual Machine Start-up"

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.