gpt4 book ai didi

java - 如何使用最少的代码比较整数?

转载 作者:搜寻专家 更新时间:2023-11-01 01:15:29 25 4
gpt4 key购买 nike

模型中有一个名为 foo 的整数属性。现在我需要知道它等于 1 还是 2。通常我使用:

if (null != model) {
Integer foo = model.getFoo();
if (foo != null) {
if (foo == 1) {
// do something...
}
if (foo == 2) {
// do something...
}
}
}

是否有更方便的代码来避免 NullPointerException?

最佳答案

您可以使用可选:

Optional.ofNullable(model)
.map(Model::getFoo)
.ifPresent(foo -> {
switch (foo) { // or if-else-if, the important thing is you skip the null check
case 1:
...
break;
case 2:
...
break;
...
}

});

关于java - 如何使用最少的代码比较整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54232125/

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