作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下嵌套空检查。尝试通过 Optional
使其可读,但如何映射第一个元素?
卡在下面,不确定如何映射这条线
vo.getSomething().getAnother().get(0)
我被困在第三行了
Optional.of(vo.getSomething)
.map(Something::getAnother)
.map(List<Another>::get(0)) // will not work
这是一个有效的空检查。我正在尝试使用Optional 来清理它。
if(vo.getSomething() != null){
if(vo.getSomething().getAnother() != null){
if(vo.getSomething().getAnother().get(0) != null){
if(vo.getSomething().getAnother().get(0).getInner() != null){
if(vo.getSomething().getAnother().get(0).getInner() != null){
if(vo.getSomething().getAnother().get(0).getInner().get(0) != null){
return vo.getSomething().getAnother().get(0).getInner().get(0).getProductName();
}
}
}
}
}
}
最佳答案
lambda 表达式
.map(list -> list.get(0))
应该可以工作。有些想法无法通过方法引用来表达。
List<Another>::get(0)
不是有效的方法引用,而 List<Another>::get
可以。
BiFunction<List<String>, Integer, String> function = List::get;
该表达式的问题在于它有一个常量 0
并且您需要显式地传递它。
但是,您可以编写静态方法
class ListFunctions {
public static <T> T getFirst(List<? extends T> list) {
return list.get(0);
}
}
并通过方法引用引用它
.map(ListFunctions::getFirst)
关于java - 从嵌套可选检查中的列表中获取元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57972252/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!