Skip to content

Commit

Permalink
【01】Java核心
Browse files Browse the repository at this point in the history
  • Loading branch information
loveincode committed Oct 21, 2018
1 parent e77c536 commit e606dbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 01 - JavaSE/01 - JVM/JVM - 类加载机制.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ https://blog.csdn.net/ns_code/article/details/17881581
另外一种就是所有其他的类加载器,这些类加载器都由Java语言实现,独立于虚拟机外部,并且全部继承自抽象类java.lang.ClassLoader。
从Java开发人员的角度来看,类加载器还可以分得更细致一些,绝大部分Java程序都会使用到以下三种系统提供的类加载器:

* 启动类加载器 Bootstrap ClassLoader
* 扩展类加载器 Extension ClassLoader
* 启动类加载器 Bootstrap ClassLoader **<JAVA_HOME>/lib**
* 扩展类加载器 Extension ClassLoader **<JAVA_HOME>/lib/ext ,java.ext.dirs**
* 应用程序类加载器 Application ClassLoader

双亲委派模型中除了启动类加载器之外其余都需要有自己的 **父类加载器**
Expand Down

0 comments on commit e606dbd

Please sign in to comment.