Java ~ Reference ~ SoftReference
admin
2024-01-20 21:19:36
0

一 概述


    SoftReference(软引用)类是Reference(引用)类的四大子类之一,只被SoftReference(软引用)类对象持有的对象(即被作为所指对象)被称为软可达(softly reachable)对象。在Java中关于软引用的定义是:如果一个对象只存在软引用,则其在空闲内存充裕的情况下不一定会被GC回收,具体情况视回收策略而定。而如果GC回收后空闲内存依旧不足,便会强制回收软可达(softly reachable)对象则会被以避免OOM。虚拟机在抛出OOM错误前会保证清除所有的软可达(softly reachable)对象。

    SoftReference(软引用)类适合用于做缓存。软引用适合做缓存是因为其自身可有可无的引用强度决定的,缓存是加快程序的运行效率而非正常运行的必要条件,即使是在没有共存强引用的环境下,只要空闲内存充裕,软引用自身也能够保证热点数据持久存在,这与缓存的运用场景是高度契合的。因此使用SoftReference(软引用)类制作缓存一方面充分利用了空闲内存加快程序的运行效率,另一方面也在空闲内存不足时将仅有的内存资源用于保障程序的正常运行而非浪费在可有可无的地方。

二 源码及机制详解


 类

    SoftReference(软引用)类继承自Reference(引用)类。当一个SoftReference(软引用)类对象被GC判断该为可回收时,会选择性(会根据回收策略清除其中的一部分)的自动清除清除当前软可达对象及持有其强引用链的软可达对象的所有软引用。

/*** Soft reference objects, which are cleared at the discretion of the garbage* collector in response to memory demand.  Soft references are most often used* to implement memory-sensitive caches.* 软引用对象,垃圾收集器根据内存需求自行清除这些对象。软引用最常用于实现对内存敏感的缓存。* 

* Suppose that the garbage collector determines at a certain point in time* that an object is softly* reachable. At that time it may choose to clear atomically all soft* references to that object and all soft references to any other* softly-reachable objects from which that object is reachable through a chain* of strong references. At the same time or at some later time it will* enqueue those newly-cleared soft references that are registered with* reference queues.* 假设垃圾收集器在某个时间点确定一个对象是软可达的。那时,它会选择性的自动清除对该对象的所有软引用,* 以及对任何其它软可达对象的所有软引用,而该对象可以通过强引用链访问。在同一时间或稍后的某个时间,* 它将对那些注册在引用队列中的新清除的软引用进行入队。*

* All soft references to softly-reachable objects are guaranteed to have* been cleared before the virtual machine throws an* OutOfMemoryError. Otherwise no constraints are placed upon the* time at which a soft reference will be cleared or the order in which a set* of such references to different objects will be cleared. Virtual machine* implementations are, however, encouraged to bias against clearing* recently-created or recently-used soft references.* 对软可达对象的所有软引用保证在虚拟机抛出OOM之前已被清除。* 虽然对清除软引用的时间或清除对不同对象的这类引用集合的顺序没有任何约束。* 但鼓励虚拟机实现不清除最近创建或最近使用的软引用。*

* Direct instances of this class may be used to implement simple caches;* this class or derived subclasses may also be used in larger data structures* to implement more sophisticated caches. As long as the referent of a soft* reference is strongly reachable, that is, is actually in use, the soft* reference will not be cleared. Thus a sophisticated cache can, for example,* prevent its most recently used entries from being discarded by keeping* strong referents to those entries, leaving the remaining entries to be* discarded at the discretion of the garbage collector.* 该类的直接实例可以用来实现简单的缓存;这个类或派生子类也可以在较大的数据结构中使用,* 以实现更复杂的缓存。只要软引用的所指对象是存在强引用的,也就是说,它实际上正在使用中,软引用就不会被清除。* 因此,一个复杂的缓存可以通过保持对这些条目的强引用来防止最近使用的条目被丢弃,其余的条目则由垃圾收集器自行决定是否丢弃。** @author Mark Reinhold* @since 1.2*/ public class SoftReference extends Reference {... }

 字段

    clock(时钟) —— 静态变量,由全局共享。本质是上次GC回收的时间戳,该值由GC负责更新。

/*** Timestamp clock, updated by the garbage collector*/
static private long clock;

    timestamp(时间戳) —— 当通过get()方法获取所指对象且所指对象不为null时该值会被更新为clock(时钟)字段值。该值被作为软可达(softly reachable)对象是否被GC回收的判断依据,具体做法是将clock(时钟)字段值减去timestamp(时间戳)字段值的差作为软可达(softly reachable)对象上次使用距离当前时间的近似值,并判断该值是否大于最大间隔,是则回收,否则保留。

/*** Timestamp updated by each invocation of the get method.  The VM may use* this field when selecting soft references to be cleared, but it is not* required to do so.*/
private long timestamp;

 构造方法

    public SoftReference(T referent) —— 只设置所指对象而不设置引用队列,因此可知SoftReference(软引用)类可不搭配引用队列使用。

/*** Creates a new soft reference that refers to the given object.  The new* reference is not registered with any queue.** @param referent object the new soft reference will refer to*/
public SoftReference(T referent) {super(referent);// 时间戳和时钟的初始值都是0。this.timestamp = clock;
}

    public SoftReference(T referent, ReferenceQueue q) —— 同时设置所指对象及引用队列。

/*** Creates a new soft reference that refers to the given object and is* registered with the given queue.** @param referent object the new soft reference will refer to* @param q        the queue with which the reference is to be registered,*                 or null if registration is not required*/
public SoftReference(T referent, ReferenceQueue q) {super(referent, q);this.timestamp = clock;
}

 方法

    public T get() —— 获取所指对象 —— 获取SoftReference(软引用)类对象的所指对象。当所指对象不为null时更新timestamp(时间戳)字段值为clock(时钟)字段值,作为GC判断软可达(softly reachable)对象是否回收的依据。

/*** Returns this reference object's referent.  If this reference object has* been cleared, either by the program or by the garbage collector, then* this method returns null.** @return The object to which this reference refers, or* null if this reference object has been cleared* @Description: 获取所指对象*/
@Override
public T get() {T o = super.get();// 当所指对象不为空且时间戳不等于时钟时,更新时间戳的值。if (o != null && this.timestamp != clock)this.timestamp = clock;return o;
}

三 回收策略


    回收策略是在空闲内存充裕的情况下用于回收软可达(softly-reachable)对象的规则。最近最少使用当前堆策略(LRUCurrentHeapPolicy)的全称为Least Recently Used Current Heap Policy,是最常用的回收策略。其思想是只保留使用最为频繁的部分软可达(softly reachable)对象,而将使用不频繁甚至不使用的软可达(softly reachable)对象回收。具体做法是计算软可达(softly reachable)对象的上次获取时间距离当前时间的间隔,并与最大间隔作比较,判断间隔是否小于等于最大间隔,是则保留,否则回收。其中最大间隔 = 空闲堆内存(MB) * JVM参数-XX:SoftRefLRUPolicyMSPerMB(默认值1000ms),故如果假设空闲堆内存为400MB,则可得最大间隔的值为400秒,当软可达(softly reachable)对象的间隔大于400秒时便会被GC回收。具体源码如下:

bool LRUCurrentHeapPolicy::should_clear_reference(oop p, jlong timestamp_clock) {// 使用时钟 - 时间戳得到差值,这个差值可以近似代表软可达(softly reachable)对象上次被获取时间至当前时间的间隔。jlong interval = timestamp_clock - java_lang_ref_SoftReference::timestamp(p);assert(interval >= 0, "Sanity check");// 如果间隔 <= 最大间隔,则不进行回收。if(interval <= _max_interval) {return false;}// 如果间隔 > 最大间隔,则进行回收。return true;
}
void LRUCurrentHeapPolicy::setup() {// 最大间隔 = 空闲堆内存(MB) * 每MB空闲内存保留时间。_max_interval = (Universe::get_heap_free_at_last_gc() / M) * SoftRefLRUPolicyMSPerMB;assert(_max_interval >= 0,"Sanity check");
}

四 JVM参数


  • -XX:SoftRefLRUPolicyMSPerMB —— 设置每MB空闲内存的单位保留时间。默认1000毫秒。

五 相关系列


  • 《Java ~ Reference》
  • 《Java ~ Reference ~ ReferenceQueue》
  • 《Java ~ Reference ~ SoftReference》
  • 《Java ~ Reference ~ PhantomReference/Cleaner》
  • 《Java ~ Reference ~ FinalReference/Finalizer》

相关内容

热门资讯

电视安卓系统哪个品牌好,哪家品... 你有没有想过,家里的电视是不是该升级换代了呢?现在市面上电视品牌琳琅满目,各种操作系统也是让人眼花缭...
安卓会员管理系统怎么用,提升服... 你有没有想过,手机里那些你爱不释手的APP,背后其实有个强大的会员管理系统在默默支持呢?没错,就是那...
安卓系统软件使用技巧,解锁软件... 你有没有发现,用安卓手机的时候,总有一些小技巧能让你玩得更溜?别小看了这些小细节,它们可是能让你的手...
安卓系统提示音替换 你知道吗?手机里那个时不时响起的提示音,有时候真的能让人心情大好,有时候又让人抓狂不已。今天,就让我...
安卓开机不了系统更新 手机突然开不了机,系统更新还卡在那里,这可真是让人头疼的问题啊!你是不是也遇到了这种情况?别急,今天...
安卓系统中微信视频,安卓系统下... 你有没有发现,现在用手机聊天,视频通话简直成了标配!尤其是咱们安卓系统的小伙伴们,微信视频功能更是用...
安卓系统是服务器,服务器端的智... 你知道吗?在科技的世界里,安卓系统可是个超级明星呢!它不仅仅是个手机操作系统,竟然还能成为服务器的得...
pc电脑安卓系统下载软件,轻松... 你有没有想过,你的PC电脑上安装了安卓系统,是不是瞬间觉得世界都大不一样了呢?没错,就是那种“一机在...
电影院购票系统安卓,便捷观影新... 你有没有想过,在繁忙的生活中,一部好电影就像是一剂强心针,能瞬间让你放松心情?而我今天要和你分享的,...
安卓系统可以写程序? 你有没有想过,安卓系统竟然也能写程序呢?没错,你没听错!这个我们日常使用的智能手机操作系统,竟然有着...
安卓系统架构书籍推荐,权威书籍... 你有没有想过,想要深入了解安卓系统架构,却不知道从何下手?别急,今天我就要给你推荐几本超级实用的书籍...
安卓系统看到的炸弹,技术解析与... 安卓系统看到的炸弹——揭秘手机中的隐形威胁在数字化时代,智能手机已经成为我们生活中不可或缺的一部分。...
鸿蒙系统有安卓文件,畅享多平台... 你知道吗?最近在科技圈里,有个大新闻可是闹得沸沸扬扬的,那就是鸿蒙系统竟然有了安卓文件!是不是觉得有...
宝马安卓车机系统切换,驾驭未来... 你有没有发现,现在的汽车越来越智能了?尤其是那些豪华品牌,比如宝马,它们的内饰里那个大屏幕,简直就像...
p30退回安卓系统 你有没有听说最近P30的用户们都在忙活一件大事?没错,就是他们的手机要退回安卓系统啦!这可不是一个简...
oppoa57安卓原生系统,原... 你有没有发现,最近OPPO A57这款手机在安卓原生系统上的表现真是让人眼前一亮呢?今天,就让我带你...
安卓系统输入法联想,安卓系统输... 你有没有发现,手机上的输入法真的是个神奇的小助手呢?尤其是安卓系统的输入法,简直就是智能生活的点睛之...
怎么进入安卓刷机系统,安卓刷机... 亲爱的手机控们,你是否曾对安卓手机的刷机系统充满好奇?想要解锁手机潜能,体验全新的系统魅力?别急,今...
安卓系统程序有病毒 你知道吗?在这个数字化时代,手机已经成了我们生活中不可或缺的好伙伴。但是,你知道吗?即使是安卓系统,...
奥迪中控安卓系统下载,畅享智能... 你有没有发现,现在汽车的中控系统越来越智能了?尤其是奥迪这种豪华品牌,他们的中控系统简直就是科技与艺...