在我目前的信使中,我有几个环境储存在共享优惠中,有一个物体可以进入。 我现在想知道,达到这些价值观是否有意义,或者是否真的要像:
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
}