gpt4 book ai didi

JAVA 8 可选 map 否则

转载 作者:行者123 更新时间:2023-12-02 02:31:50 25 4
gpt4 key购买 nike

您好,我已经用 Optional<Parameter> 写了声明如果参数存在并且其值为false,我返回true

public boolean getNoDailyAllowance(String code) {
Optional<Parameter> myParam = parameterDao.getCachedParameter(code);
return myParam.isPresent() && !myParam.get().currentValueBoolean();
}

我想重写它像这样

return calcDailyAllowanceParam.map(parameter -> Boolean.parseBoolean(parameter.getCurrentValue())).orElse(false); 

但我无法在 parameter.getCurrentValue() 之前添加 ! 运算符我做错了什么。

最佳答案

解决方案如下:

    public boolean getNoDailyAllowance(final String code) {
return !parameterDao
.getCachedParameter(code)
.map(Parameter::currentValueBoolean)
.orElse(true);
}

关于JAVA 8 可选 map 否则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46974403/

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