gpt4 book ai didi

java - 将 Integer 对象与原始 int 进行比较

转载 作者:行者123 更新时间:2023-12-01 14:06:13 25 4
gpt4 key购买 nike

我正在将整数对象与原始 int 进行比较,但如果 Integer 对象是 null,则会得到空指针异常

public static void main(String[] args) {

Integer a = null;
int b = 1;

if (a != b) {
System.out.println("True");
}

}


Output : Exception in thread "main" java.lang.NullPointerException
at com.nfdil.loyalty.common.Test.main(Test.java:10)

我得到这个是因为它试图转换 null integer object (a.intValue()) into primitive int

有没有其他方法可以避免这种情况?

最佳答案

您可以使用 Objects.equals :

if (!Objects.equals(a, b)) { ... }

关于java - 将 Integer 对象与原始 int 进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50803937/

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