引用类型
Catch(Exception e)
这个作者很懒,什么都没留下…
展开
-
关于SoftReference被回收的时机
最近我一直在考虑SoftReference在什么时候会被垃圾回收器回收,最初我以为发生FullGC的时候,软引用就会被清除,最近我发现并不是这样的。下面就上代码来说明关于软引用被回收的时机:public class SoftReferenceTest { public static SoftReference<Student> studentSoftRef = new SoftR...原创 2019-01-13 21:26:43 · 1942 阅读 · 0 评论 -
关于WeakReference被回收的时机
上一篇我讲到了关于SoftReference在什么情况下会被垃圾回收器所回收,这一篇我将用代码来验证WeakReference在什么情况下会被垃圾回收器所回收,究竟是在FULL GC的时候被清除还是在GC的时候被清除。直接上代码:public class WeakReferenceTest { public static void main(String[] args) { WeakRe...原创 2019-01-15 15:37:54 · 4612 阅读 · 0 评论