当前elseCondition为null时,是否可能在一行中写nullPointer

在我的场景中,returnValue是一个String,它为null。

我要写的条件是

if (returnValue != null) {
    return returnValue;
} else if (elseCondition != null) {
    return elseCondition.getValue();
} else {
    return null;
}

Optional.ofNullable(returnValue).orElse(elseCondition.getValue()) //throws nullPointer as elseCondition is null

class ElseCodnition {
    private  String value;

    getValue() {...}
}

最佳答案

elseCondition还应该用Optional包裹:

Optional.ofNullable(returnValue)
        .orElse(Optional.ofNullable(elseCondition)
                        .map(ElseCodnition::getValue)
                        .orElse(null));


也就是说,我不确定这是否是Optional的好用例。

关于java - java8 orElse(null.getValue())如何处理,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55683206/

10-09 00:11