具有自动装箱功能的三元运算符中的Java NPE?

发布于 2024-12-11 01:49:35 字数 760 浏览 0 评论 0原文

今天早上我遇到了一个非常奇怪的NPE,并将其简化为一个简单的例子。这是 JVM 错误还是正确行为?

public class Test1 {
    class Item {
        Integer id = null;
        public Integer getId() {return id;}
    }   
    public Integer f() {
        Item item = new Item();
        // this works:
        //return item == null ? new Integer(1) : item.getId();

        // NPE??
        return item == null ? 1 : item.getId();
    }   
    public static void main(String[] args) {
        Test1 t = new Test1();
        System.out.println("id is: " + String.valueOf(t.f()));
    }   
}

编译和运行的输出:

$ javac Test1.java 
$ java Test1
Exception in thread "main" java.lang.NullPointerException
at Test1.f(Test1.java:12)
at Test1.main(Test1.java:16)
$

I ran across a very weird NPE this morning, and reduced it to a simple example. Is this a JVM bug or correct behavior?

public class Test1 {
    class Item {
        Integer id = null;
        public Integer getId() {return id;}
    }   
    public Integer f() {
        Item item = new Item();
        // this works:
        //return item == null ? new Integer(1) : item.getId();

        // NPE??
        return item == null ? 1 : item.getId();
    }   
    public static void main(String[] args) {
        Test1 t = new Test1();
        System.out.println("id is: " + String.valueOf(t.f()));
    }   
}

Output from compile and run:

$ javac Test1.java 
$ java Test1
Exception in thread "main" java.lang.NullPointerException
at Test1.f(Test1.java:12)
at Test1.main(Test1.java:16)
$

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

三五鸿雁 2024-12-18 01:49:35

表达式 item == null 的类型? 1:item.getId()int 而不是 Integer。因此,Java 需要自动将 Integer 拆箱为 int(导致 NullPointerException)。然后它会自动将结果装箱为一个Integer(如果没有NullPointerException,它)从方法返回。

另一方面,表达式 item == null ? new Integer(1) :item.getId() 的类型为 Integer,不需要进行自动拆箱。

当您自动取消装箱 null Integer 时,您会收到 NullPointerException (请参阅 自动装箱),这就是您所经历的。

回答你的问题,这是正确的行为。

The type of the expression item == null ? 1 : item.getId() is int not Integer. Therefore, Java needs to auto-unbox your Integer to an int (causing the NullPointerException). Then it auto-boxes the result back to an Integer (well it would if not for the NullPointerException) to return from the method.

On the other hand, the expression item == null ? new Integer(1) : item.getId() has a type of Integer and no auto-unboxing needs to be done.

When you auto-unbox a null Integer, you get a NullPointerException (see Autoboxing) and that is what you are experiencing.

To answer your question, this is correct behavior.

幸福%小乖 2024-12-18 01:49:35

如果你反编译类文件,你会清楚地看到你的 NPE...

return Integer.valueOf(item != null ? item.getId().intValue() : 1);

If you decompile the class file you will see clearly your NPE...

return Integer.valueOf(item != null ? item.getId().intValue() : 1);
电影里的梦 2024-12-18 01:49:35

item 可能不是 null,但是当您调用 getId() 时,就会返回 null。当您尝试自动取消装箱 null 时,您会收到 NPE。

item may not be null, but when you call getId(), that is returning null. When you try to auto-unbox null, you get an NPE.

┾廆蒐ゝ 2024-12-18 01:49:35

下面的返回类型是 Integer -

public Integer f() {
    Item item = new Item();
    // this works:
    //return item == null ? new Integer(1) : item.getId();

    // NPE??
    return item == null ? 1 : item.getId();
}

以下结果 -

item == null ? 1 : item.getId()

在您的情况下是 null

因此,JVM 抛出 NPE 是因为它试图自动装箱 null

尝试 -

new Integer(null); // and
Integer.valueOf(null);

两者都会抛出 NPE。

The return type below is Integer -

public Integer f() {
    Item item = new Item();
    // this works:
    //return item == null ? new Integer(1) : item.getId();

    // NPE??
    return item == null ? 1 : item.getId();
}

And the result of the following -

item == null ? 1 : item.getId()

is null in your case.

So, JVM is throwing NPE because it is trying to autobox null.

Try -

new Integer(null); // and
Integer.valueOf(null);

both will throw NPE.

海之角 2024-12-18 01:49:35

发生这种情况是因为您使用了条件运算符 ?。行

return item == null ? 1 : item.getId();

相当于

int result = item == null ? 1 : item.getId();
return result;

The result is int 因为表达式中的第一个操作数。这就是当您用 Integer 显式包装 1 时您的代码可以工作的原因。在这种情况下,编译器会创建类似

Integer result = item == null ? new Integer(1) : item.getId();
return result;

So, NPE 当尝试将 item.getId() (即 null)“转换”为 int 时发生。

It happens because you are using conditional operator ?. Line

return item == null ? 1 : item.getId();

is equivalent to

int result = item == null ? 1 : item.getId();
return result;

The result is int because of the first operand in your expression. This is the reason that your code works when you explicitly wrap 1 with Integer. In this case the compiler creates something like

Integer result = item == null ? new Integer(1) : item.getId();
return result;

So, NPE happens when attempting to "cast" item.getId() (that is null) to int.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文