Update Java 虚拟机.md

fix a mistake
This commit is contained in:
Weafung 2018-04-18 19:01:32 +08:00 committed by GitHub
parent 03cb26dd43
commit 0d2e9b711f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,7 +142,7 @@ Java 对引用的概念进行了扩充,引入四种强度不同的引用类型
**(一)强引用**
只要强引用存在,垃圾回收器永远不会回收掉被引用的对象。
只要强引用存在,垃圾回收器永远不会回收掉被引用的对象。
使用 new 一个新对象的方式来创建强引用。