Does system classloader load all classes in classpath even if they're not actually used?

荒凉一梦 提交于 2019-12-20 02:54:45

问题


I'm using JDK 1.6 to run a small application. However I set a very massive classpath which includes a lot of classes.

When I run the application will all classes in the classloader been loaded even if they're not actually used in my application? If not, how to force the classloader do so, and if yes, how to avoid it? Thanks!

E.g.,I'm using ant 1.7 to run my application.

Best Regards, Robert Ji


回答1:


No, The ClassLoader loads the class when the class is needed in memory. It doesn't load all classes at once as it can run out of memory.




回答2:


They are loaded when needed. But what "when needed" means, might depend on the classloader. Typically, when a class is loaded it also checks the existence of all classes it references - and it might also load them.

You can check it by adding the option -verbose to your Java JVM, it outputs then all the classes it loads, and from where.




回答3:


To my knowledge it's impossible to load all classes if they are not accessed explicitly. Class in only loaded when it's constructor or any other static member is first accessed, this rule applies to nested classes as well.



来源:https://stackoverflow.com/questions/6266156/does-system-classloader-load-all-classes-in-classpath-even-if-theyre-not-actual

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!