-3
に設定<地図<文字列、オブジェクト>>を私は次の方法がありますか?出来ますか?変換句は句のforEach
に設定<地図<文字列、オブジェクト>>を私は次の方法がありますか?出来ますか?変換句は句のforEach
ストリーム内の共有可能な可変変数を更新することは悩みの種です。これはそれを行う必要があります。
resultEmpty.stream().forEach(empty -> {
resultWithValues.stream()
.filter(
withValues -> withValues.get("name").equals(empty.get("name")))
.findFirst().ifPresent(withValues -> {
empty.replace("totsuccess", withValues.get("totsuccess"));
empty.replace("totfailed", withValues.get("totfailed"));
});
});