gpt4 book ai didi

java - Java 中的自动装箱

转载 作者:搜寻专家 更新时间:2023-10-31 08:28:54 24 4
gpt4 key购买 nike

下面的表达式是如何求值的?

学生类(class):

public class Student
{
private Integer id;
// few fields here

public Integer getId()
{
return id;
}

public void setId(Integer id)
{
this.id=id;
}

//setters and getters
}

并且在某些方法中:

{
int studentId;

// few lines here

if(studentId==student.getId()) // **1. what about auto-unboxing here? Would it compare correctly? I am not sure.**
{
//some operation here
}
}

最佳答案

是的,这将起作用它等同于

studentId==student.getId().intValue()  

只要 student.id 不是 null

关于java - Java 中的自动装箱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8488732/

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