gpt4 book ai didi

android - SharedPreferences 的缓存值有意义吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:10:13 25 4
gpt4 key购买 nike

在我当前的 Android 应用程序中,我有几个设置存储在 SharedPreferences 和一个处理对它们的访问的对象。我现在想知道缓存值是否有意义,或者访问它们是否不重要,例如:

public final boolean isxxxEnabled() {
return preferences.getBoolean("xxx", false);
}

代替

public final boolean isxxxEnabled() {
// check if value changed
// if not, check if value is cached
// decide whether to return cached or new
// cache value
return
}

最佳答案

缓存共享首选项并不是真正必要的。您将获得的加速充其量是微不足道的,并且会增加您必须编写的代码。我会说不要打扰。

关于android - SharedPreferences 的缓存值有意义吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8054819/

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