gpt4 book ai didi

lambda - 多 map 的Java可选用法

转载 作者:行者123 更新时间:2023-12-01 11:26:16 24 4
gpt4 key购买 nike

大陆是一个复合对象。结构是:

Continent
--Country
----State
------Town

所以在这个符号中:

town= Optional.of(continent)
.map(Continent::getCountry)
.map(Country::getState)
.map(State::getTown)
.orElse(null);

这工作正常,但是当我尝试编写通用映射器时,

  public static <T, R> T getFromMapping(R source,
T defaultValue,
Function<?,?>... functions) {
Optional sourceWrapper = Optional.ofNullable(source);
for (Function function : functions) {
sourceWrapper.map(function);
}
return (T) sourceWrapper.orElse(defaultValue);
}

并通过

调用它
 portfolio = getFromMapping(continent, null,
((Function<Continent, Country>) Continent::getCountry)
((Function<Country, State>) Country::getState),
((Function<State, Town>) State::getTown));

它编译得很好但不工作。映射器跳到第二步,说大陆不能转换到国家,为什么?做图的时候应该没有cast,怎么解决?

最佳答案

Optional#map 不会修改自身,而是返回一个新的 Optional,因此 sourceWrapper 仍然包含您所在的大陆。您应该在 for 循环中重新分配变量:

sourceWrapper = sourceWrapper.map(function);

关于lambda - 多 map 的Java可选用法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37046998/

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