摘要: 软引用相关知识传送门:http://blog.csdn.net/donglinlucky/article/details/2845777public class BitmapCache { static private BitmapCache cache; /** 用于Chche内容的存储 */ private Hashtable<Integer, MySoftRef> hashRefs; /** 垃圾Reference的队列(所引用的对象已经被回收,则将该引用存入队列中) */ private ReferenceQueue<Bitmap> q; /** ... 阅读全文
posted @ 2012-01-30 08:29 D.Winter 阅读(8564) 评论(8) 推荐(1) 编辑