Attempt to invoke virtual method 'int java.lang.Integer.intValue()' on a null object refer

2021/7/10 14:35:52

本文主要是介绍Attempt to invoke virtual method 'int java.lang.Integer.intValue()' on a null object refer,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

问题原因:

1,int和Integer判断是否相等时出错

2,用到int的地方,实际传值是Integer

(int是基本类型,存数值;integer是对象,用一个引用指向这个对象)

解决方案:

对Integer参数进行null判断,如果不为null,再将Integer值转换成int

public Integer getResource(){
    return rid;
}

public void showImage(Integer resourceId){
    if(resourceId != null){
        Glide.with(context).load(resourceId.intValue());
    }
}

 



这篇关于Attempt to invoke virtual method 'int java.lang.Integer.intValue()' on a null object refer的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程