Java,将对象转换为软引用

发布于 2024-12-20 20:11:57 字数 463 浏览 1 评论 0原文

我需要将一个数据对象放入包含软引用的weakhashmap中。如何将“Drawable”对象转换为软引用?

WeakHashMap <String, SoftReference<Drawable>> tempPulled = new WeakHashMap<String,     SoftReference<Drawable>>();
Drawable pulled = BitmapDrawable.createFromResourceStream(null, null, conn.getInputStream(), "galleryImage", options);
SoftReference<Drawable> sPulled;            
tempPulled.put(id, pulled);

tempPulled 应该放置 "sPulled" ,软引用

I need to put a data object into my weakhashmap containing softreferences. How do I convert my "Drawable" object into a softreference?

WeakHashMap <String, SoftReference<Drawable>> tempPulled = new WeakHashMap<String,     SoftReference<Drawable>>();
Drawable pulled = BitmapDrawable.createFromResourceStream(null, null, conn.getInputStream(), "galleryImage", options);
SoftReference<Drawable> sPulled;            
tempPulled.put(id, pulled);

tempPulled should be putting "sPulled" , the softreference

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

溺孤伤于心 2024-12-27 20:11:57

我认为这就是您正在寻找的

SoftReference<Drawable> sPulled = new SoftReference<Drawable>(pulled);            

但是您可能想要添加一个队列以在引用的对象被删除时从映射中删除软引用(或者您的缓存将随着键和空软引用而增长。

I think this is what you are looking for

SoftReference<Drawable> sPulled = new SoftReference<Drawable>(pulled);            

But you probably want to add a queue to remove the SoftRefence from the map should the referenced object be removed (or your cache will grow with keys and empty softrefences.

眼波传意 2024-12-27 20:11:57

查看 Guava 的 MapMaker 类,允许您指定软值。比自己重新实现要容易得多。

Take a look at Guava's MapMaker class, which allows you to specify soft values. Way easier than reimplementing it yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文