import java.lang.ref.SoftReference; public class ImageData { private String path; private SoftReference<byte[]> dataRef; public ImageData(String path) { this.path = path; dataRef = new SoftReference<byte[]>(new byte[0]); } private byte[] readImage() { return new byte[1024 * 1024]; // 省去了读取文件的操作 } public byte[] getData() { byte[] dataArray = dataRef.get(); if (dataArray == null || dataArray.length == 0) { dataArray = readImage(); dataRef = new SoftReference<byte[]>(dataArray); } return dataArray; } }
在有些情况下,程序会需要在一个对象的可达到性发生变化的时候得到通知。比如某个对象的强引用都已经不存在了,只剩下软引用或是弱引用。但是还需要对引用本身做一些的处理。典型的情景是在哈希表中。引用对象是作为WeakHashMap中的键对象的,当其引用的实际对象被垃圾回收之后,就需要把该键值对从哈希表中删除。有了引用队列(ReferenceQueue),就可以方便的获取到这些弱引用对象,将它们从表中删除。在软引用和弱引用对象被添加到队列之前,其对实际对象的引用会被自动清空。通过引用队列的 poll/remove方法就可以分别以非阻塞和阻塞的方式获取队列中的引用对象。
参考文献:
深入理解JVM
Java深度探索
原文地址:http://blog.csdn.net/lgcssx/article/details/38277129