gpt4 book ai didi

java - 获取Android LRUCache当前使用的内存

转载 作者:行者123 更新时间:2023-12-01 11:17:24 25 4
gpt4 key购买 nike

为了进行测试,我想查看 LRU 缓存当前使用了多少 kB/MB。我将总大小设置为 4096。

有没有这样的函数:

public LruCache<String, Bitmap> myCache;
...
...
println(myCache.getUsedAmount());

println(myCache.getAvailabeSpace());

最佳答案

看看Documentation .

如果您不覆盖 sizeOf(K,V),则使用 size() 应该可以正常工作:

For caches that do not override sizeOf(K, V), this returns the number of entries in the cache. For all other caches, this returns the sum of the sizes of the entries in this cache.

您还可以浏览所有条目并检查它们的大小。

关于java - 获取Android LRUCache当前使用的内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31646922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com