JavaJVM · Java虚拟机原理 · JVM上语言·框架· 生态系统java面试集锦

理解类加载的双亲委派模型

2020-04-09  本文已影响0人  gaopq

类加载器

Java API doc 表述

The Java platform uses a delegation model for loading classes. The basic idea is that every class loader has a "parent" class loader. When loading a class, a class loader first "delegates" the search for the class to its parent class loader before attempting to find the class itself.

思考理解

资料参考

上一篇下一篇

猜你喜欢

热点阅读