Difference between AppClassloader and SystemClassloader

后端 未结 3 1818
一生所求
一生所求 2021-02-02 00:16

I am so confused about these two class loaders. When talking about the hierarchy of Java class loaders, usually the bootstrap classloader and ext class loader and the third one

3条回答
  •  既然无缘
    2021-02-02 00:56

    System class loader is a different name for Application class loader.

    Source: https://blogs.oracle.com/sundararajan/entry/understanding_java_class_loading

    Application class loader ... is also (confusingly) called as "system class loader" - not to be confused with bootstrap loader which loads Java "system" classes.

提交回复
热议问题