Classloader

The class loader:

BootStrap classloader: load the classes that are included in "java.*" package.

 

Extention classloader: load the classes that are included in "javax>*" or under the directory "ext" of JRE(C:\jdk1.6\jre\lib\ext).

 

application classloader:  for loading class of application.

 

 

 

你可能感兴趣的:(ClassLoader)