This answer告诉我,调用TypedArray的recycle()
方法允许它被垃圾收集.我的问题是为什么TypedArray特别需要一个方法来进行垃圾回收?为什么它不能等待像常规对象一样被垃圾收集?
解决方法:
这是缓存purporse所必需的.当您调用recycle时,意味着可以从这一点重用此对象.内部TypedArray包含很少的数组,所以为了在每次使用TypedArray时都不分配内存,它在Resources类中作为静态字段缓存.您可以查看TypedArray.recycle()方法代码:
/** * Give back a prevIoUsly retrIEved StyledAttributes, for later re-use. */public voID recycle() { synchronized (mResources.mTmpValue) { TypedArray cached = mResources.mCachedStyledAttributes; if (cached == null || cached.mData.length < mData.length) { mXml = null; mResources.mCachedStyledAttributes = this; } }}
因此,当您调用recycle时,您的TypedArray对象将返回到缓存.
总结以上是内存溢出为你收集整理的android – 为什么要回收TypedArray?全部内容,希望文章能够帮你解决android – 为什么要回收TypedArray?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)