最佳答案
我试图理解 Java8中 Optional
API 的 ifPresent()
方法。
我的逻辑很简单:
Optional<User> user=...
user.ifPresent(doSomethingWithUser(user.get()));
但这导致了一个编译错误:
ifPresent(java.util.functionError:(186, 74) java: 'void' type not allowed here)
我当然可以这样做:
if(user.isPresent())
{
doSomethingWithUser(user.get());
}
但这就像一个杂乱的 null
检查。
如果我把代码改成这样:
user.ifPresent(new Consumer<User>() {
@Override public void accept(User user) {
doSomethingWithUser(user.get());
}
});
代码越来越脏了,这让我想起了以前的 null
检查。
有什么想法吗?