When I read something about JVM, it tells me that the namespace of JVM can identify a class loaded in the JVM, only the full name of the class is not useful! When or on which circumstance a class will be loaded in the jvm(I mean the same jvm) twice and more? Is this way a useful way?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
If you simply try to load the same class multiple times with reflection, then subsequent times will just return the already loaded class. This is a common situation, and there is nothing special about it. It is possible to load the same class with different class loaders. In general, this is not necessary, and it can be very confusing. Because two instances of the same class loaded by different class loaders are not equal, |
|||||||
|