我想正确处理 NPE 警告。
例子:
@Nullable
LiveData<User> currentUser;
LiveData<List<Medication>> getUserMeds() {
return parent.getMedsForUser(this.currentUser.getValue().getId());
}
为方法显示两个 NPE 警告
getValue()
getId()
我目前正在通过检查非空值来确保我不会在函数外部弄乱,但我会觉得在函数内部实现它会更好。
一只斗牛犬
拉风的咖菲猫
相关分类