作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含几个可选值的对象,其中可选值不为空,我想将其值作为参数传递给需要多个参数的方法。
目前我有一个代码块,如下所示:
if (dealerRequest.getIsApproved().isPresent()) {
repository.updateDealerPartnerFinanceIsApproved(dealerRequest.getDealerId(), dealerRequest.getIsApproved().get());
}
if (dealerRequest.getIsOptedIn().isPresent()) {
repository.updateDealerPartnerFinanceOptedIn(dealerRequest.getDealerId(), dealerRequest.getIsOptedIn().get());
}
我知道检查值是否存在,然后稍后获取它比过去的空检查更有用;但是我不知道在这种情况下还能如何使用它们?
理想情况下,我会 .map() 我的存储库中方法的可选参数,但是我不知道如何传递(如果可以的话)第二个参数?有更简洁的方法吗?
最佳答案
您也可以使用ifPresent()
:
dealerRequest.getIsApproved().ifPresent(
approved -> repository.updateDealerPartnerFinanceIsApproved(dealerRequest.getDealerId(), approved));
相应地第二个可选。
关于java - 如果Optional.isPresent()则使用可选值作为方法参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43522393/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!