Update Java_虚拟机.md

This commit is contained in:
heibaiying 2019-12-23 22:24:07 +08:00 committed by GitHub
parent ffdf4e2c2f
commit 4ab3c93467
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -536,7 +536,7 @@ JDK 9 之后为了适应模块化的发展,类加载器做了如下变化:
以上层次并不是固定不变的,根据不同的运行参数和版本,虚拟机可以调整分层的数量。各层次编译之间的交互转换关系如下图所示:
<div align="center"> <img src="../pictures/分层编译的交互关系.png"/> </div>
<div align="center"> <img width="600px" src="../pictures/分层编译的交互关系.png"/> </div>
实施分层编译后,解释器、客户端编译器和服务端编译器就会同时工作,可以用客户端编译器获取更高的编译速度、用服务端编译器来获取更好的编译质量。