腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(562)
视频
沙龙
1
回答
GC何时收回
SoftReference
本身?
、
当垃圾收集器回收
SoftReference
引用的对象时,垃圾收集器如何处理
SoftReference
本身?
浏览 1
提问于2022-06-03
得票数 0
回答已采纳
1
回答
了解
SoftReference
<Bitmap>在HashMap中的作用
、
.private final HashMap<String,
SoftReference
<Bitmap>> Cache = new HashMap<String,
SoftReference
<Bitmap>>();
SoftReference
<Bitmap> ref = Cache.get
浏览 0
提问于2012-01-04
得票数 1
回答已采纳
1
回答
在安卓系统中使用
SoftReference
缓存位图导致面向对象
、
、
、
、
并使用用于高速缓存的
SoftReference
。我将每个软引用与ReferenceQueue相关联,并使用散列映射来访问
SoftReference
。final private ReferenceQueue<Bitmap> queue = new ReferenceQueue<Bitmap>(); hash = Collections.synchronizedMap(
浏览 4
提问于2011-11-22
得票数 2
回答已采纳
1
回答
为什么还有来自
SoftReference
的OutOfMemory?
、
、
所以我的问题是:在设置-Xmx2M时,我创建了一个循环来创建弱引用for (int i = 0;i < size; i++) { sa.add(ref); }
浏览 0
提问于2016-05-08
得票数 1
2
回答
SoftReference
在地图中的应用
、
、
我在下面看到了遗留项目中LRU缓存的实现,在这个项目中,我有一个关于
SoftReference
用于值对象而不是用于关键对象的问题。以下是实现 public LRUCacheImpl(
浏览 1
提问于2014-10-29
得票数 2
回答已采纳
1
回答
如何在android中处理listview中的大位图?
、
我在这个中发现,使用、
SoftReference
或WeakReference不会处理大位图。import java.lang.ref.
SoftReference
;import android.graphics.Bitmap; private HashMap<String,
SoftReference
<Bitmap>> cache=new HashMap<String,
SoftRefere
浏览 6
提问于2013-01-08
得票数 1
3
回答
如果引用是GC的,如何对
SoftReference
进行GC
我有一个 ConcurrentMap<String,
SoftReference
<X>> map = new ConcurrentHashMap<String,
SoftReference
<X>>();并且希望在
SoftReference
的引用被GC时从映射中删除键/值对。
浏览 2
提问于2012-07-26
得票数 0
回答已采纳
2
回答
什么时候可以回收“引用对象”?
、
、
现在,我遇到了这样一个奇怪的案子: int total = 3000000; for (int i = 0;
浏览 1
提问于2011-09-14
得票数 1
3
回答
Java:在HttpSession中将
SoftReference
保留为ArrayList有什么问题/负面影响吗?
、
、
我的代码执行以下操作(仅作为示例,我指定java.lang.ref.
SoftReference
的包路径的原因是为了注意它不是我自己的实现:-):someData.add("Value1");......之后的版本:jav
浏览 1
提问于2010-03-17
得票数 1
1
回答
尝试理解以下AyncImageLoader
、
、
import java.lang.ref.
SoftReference
;HashMap<String,
SoftReference
<Drawable>> drawableMap = new HashMap<String,
SoftReference
<Drawable>>(); public
浏览 0
提问于2012-01-04
得票数 0
回答已采纳
4
回答
列出Java对象的所有私有字段?
、
、
java.lang.Classclass java.security.ProtectionDomainclass java.lang.ref.
SoftReference
class java.lang.ref.
SoftReference
class java.lang.ref.
SoftReference
class java.lang.ref.
SoftReference
cla
浏览 2
提问于2013-07-03
得票数 5
回答已采纳
1
回答
从Android中的
SoftReference
获取位图失败
我将我的位图放入hashmap中,如下所示:
SoftReference
<Bitmap>
浏览 0
提问于2013-03-01
得票数 0
回答已采纳
3
回答
如何强制释放软引用?
、
、
我的代码: ReferenceQueue queue = new ReferenceQueue(); object = null; //now I force release
浏览 1
提问于2019-02-13
得票数 1
回答已采纳
1
回答
Android游戏资源加载的内存不足
、
我正在编写一款游戏,到目前为止,它必须使用总计14 MB的大约200 PNG,所有的大小都在250x150到600x400之间(这些都是xhdpi可绘制的,现在我让android对较低的dpi进行调整)。我看过有更多资源的游戏,有些甚至是几百MB。这些程序如何在不超过内存约束的情况下快速加载它们的资源? 14 MB应该不会太多。 现在,我正在使用BitmapFactory.decodeResource()加载游戏开始前的几个fo
浏览 1
提问于2012-02-28
得票数 3
回答已采纳
3
回答
安卓:
SoftReference
/ WeakReference示例
、
、
当我阅读一些教程时,我开始了解到,我可以通过使用
Softreference
/Weakreference来解决这个问题。但我不知道如何使用
Softreference
/Weakreference。请给我推荐一些为
Softreference
或Weakreference提供示例的教程。 谢谢..。
浏览 0
提问于2011-06-30
得票数 2
回答已采纳
2
回答
如何防止android出现内存溢出错误
我是android的新手,我正在开发一个应用程序,在这个应用程序中,我正在从服务器下载可绘制数组中的图像。一切都是正确的,但是当活动(在线程中一个接一个地下载绘图文件)加载时,一段时间后,它会出现内存溢出错误。
浏览 0
提问于2011-04-05
得票数 1
2
回答
在Android上缓存图片的最佳实践是什么?
、
、
、
在我的应用程序中,我使用
SoftReference
缓存图像,它与活动的互联网连接工作得很好。现在我需要缓存图像,所以我可以在脱机模式下使用它。我将非常感谢你的建议。谢谢。
浏览 0
提问于2010-06-09
得票数 2
1
回答
派生泛型类型的java擦除
、
、
、
、
我正在尝试扩展这个类,比如我可以将SoftReferences的使用封装在getter和setter中: { return super.get(x,y).get(); // get the array element, then the
SoftReference
public void set( T o , int x , int y
浏览 2
提问于2012-12-20
得票数 4
回答已采纳
2
回答
Java,将对象转换为软引用
、
、
、
WeakHashMap <String,
SoftReference
<Drawable>> tempPulled = new WeakHashMap<String,
SoftReference
<BitmapDrawable.createFromResourceStream(null, null, conn.getInputStream(), "galleryImage", options);
SoftReference
浏览 11
提问于2011-12-11
得票数 3
回答已采纳
1
回答
使用软引用值的HashMap实现
、
、
由于映射将用作缓存,因此我希望通过软链接(java.lang.ref.
SoftReference
)引用值/条目,以便在纯内存中清除它。我可以通过以下方式实现它: Map<Integer,
SoftReference
<T>> myMap = new HashMap<>(); if (value == null || value.get() =
浏览 40
提问于2019-04-18
得票数 0
回答已采纳
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Java四种引用类型:强引用、软引用、弱引用、虚引用
Java中的强软弱虚引用
问:Java对象的访问方式有几种?
Java Reference核心原理分析
JVM又曾放过谁,垃圾终将被回收!
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券